質問編集履歴
1
routes.rb 追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -170,6 +170,38 @@
|
|
170
170
|
|
171
171
|
```
|
172
172
|
|
173
|
+
```ruby
|
174
|
+
|
175
|
+
routes.rb
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
Rails.application.routes.draw do
|
180
|
+
|
181
|
+
devise_for :users, controllers: {
|
182
|
+
|
183
|
+
registrations: 'users/registrations'
|
184
|
+
|
185
|
+
}
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
resources :posts, only: :index
|
190
|
+
|
191
|
+
resources :users, only: [:show, :new, :create]
|
192
|
+
|
193
|
+
|
194
|
+
|
195
|
+
root to: "posts#index"
|
196
|
+
|
197
|
+
end
|
198
|
+
|
199
|
+
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
```
|
204
|
+
|
173
205
|
### 試したこと
|
174
206
|
|
175
207
|
new.html.erbにbinding.pryをかけたところ、@profileのインスタンスが作成されていることは確認できました。
|