質問編集履歴
1
コードを見やすく機能を使って修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -52,6 +52,8 @@
|
|
52
52
|
|
53
53
|
|
54
54
|
|
55
|
+
```ここに言語を入力
|
56
|
+
|
55
57
|
<h2>会員登録</h2>
|
56
58
|
|
57
59
|
|
@@ -132,6 +134,10 @@
|
|
132
134
|
|
133
135
|
<%= render "devise/shared/links" %>
|
134
136
|
|
137
|
+
```
|
138
|
+
|
139
|
+
|
140
|
+
|
135
141
|
|
136
142
|
|
137
143
|
## app/controllers/users/registrations_controller.rb
|
@@ -140,6 +146,8 @@
|
|
140
146
|
|
141
147
|
|
142
148
|
|
149
|
+
```ここに言語を入力
|
150
|
+
|
143
151
|
class Users::RegistrationsController < Devise::RegistrationsController
|
144
152
|
|
145
153
|
|
@@ -172,12 +180,16 @@
|
|
172
180
|
|
173
181
|
end
|
174
182
|
|
183
|
+
```
|
184
|
+
|
175
185
|
|
176
186
|
|
177
187
|
##app/controllers/applicaton_controller.rb
|
178
188
|
|
179
189
|
|
180
190
|
|
191
|
+
```ここに言語を入力
|
192
|
+
|
181
193
|
class ApplicationController < ActionController::Base
|
182
194
|
|
183
195
|
before_action :basic_auth, if: :production?
|
@@ -222,8 +234,6 @@
|
|
222
234
|
|
223
235
|
end
|
224
236
|
|
225
|
-
|
226
|
-
|
227
237
|
登録画面のストロングパロメーター
|
228
238
|
|
229
239
|
def configure_permitted_parameters
|
@@ -233,3 +243,5 @@
|
|
233
243
|
end
|
234
244
|
|
235
245
|
end
|
246
|
+
|
247
|
+
```
|