Skip to content

Commit e658e0e

Browse files
committed
wip.
1 parent 9dd9781 commit e658e0e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/controllers/connect/google_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def create
1414
scope: ['openid', "email", "profile"], # 'openid' 必須
1515
state: session[:state], # 推奨
1616
nonce: session[:nonce] # Implicit Flow では必須. FAPI では必須
17-
)
17+
), allow_other_host: true
1818
end
1919

2020

Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<%= link_to image_tag('google.png'), connect_google_path, :method => :post %>
1+
<%= button_to image_tag('google.png'), connect_google_path, method: :post, data:{turbo:false} %>

app/views/fake_users/index.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
<h1>Fake Users</h1>
3+
<h1 class="title">Fake Users</h1>
44

55
<%= link_to 'New Fake User...', new_fake_user_path %>
66

app/views/layouts/application.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282

8383

8484

85-
<footer class="page_footer">
85+
<footer class="footer">
8686
<ul>
8787
<li>
8888
<%= link_to 'OpenID Connect RubyGem', 'https://github.com/nov/openid_connect/' %>

0 commit comments

Comments
 (0)