質問編集履歴

1

config/routesを追加させていただきました。

2020/09/12 01:57

投稿

aku424tt
aku424tt

スコア15

test CHANGED
File without changes
test CHANGED
@@ -406,6 +406,32 @@
406
406
 
407
407
  ```
408
408
 
409
+ ```ruby
410
+
411
+ Rails.application.routes.draw do
412
+
413
+ devise_for :users
414
+
415
+ # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
416
+
417
+ root 'homes#top'
418
+
419
+ resources :users
420
+
421
+ resources :posts do
422
+
423
+ resource :favorites, only: [:create, :destroy]
424
+
425
+ resources :post_comments, only: [:create, :destroy]
426
+
427
+ end
428
+
429
+ end
430
+
431
+
432
+
433
+ ```
434
+
409
435
  不要な点がありましたらお申し付けください。
410
436
 
411
437
  分かる方がいらっしゃいましたらぜひよろしくお願いします。