質問編集履歴

1

ルーティングの記述を追加しました。

2021/01/23 05:42

投稿

yosida0929
yosida0929

スコア1

test CHANGED
File without changes
test CHANGED
@@ -302,6 +302,34 @@
302
302
 
303
303
 
304
304
 
305
+ ```
306
+
307
+ routes.rb
308
+
309
+
310
+
311
+ Rails.application.routes.draw do
312
+
313
+ devise_for :users
314
+
315
+ root to: "prototypes#index"
316
+
317
+ resources :prototypes, only: [:new, :create, :show, :edit, :update, :destroy] do
318
+
319
+ resources :comments, only: :create
320
+
321
+ end
322
+
323
+ resources :users, only: :show
324
+
325
+ end
326
+
327
+ ```
328
+
329
+
330
+
331
+
332
+
305
333
  エラーが出るわけではないのですが、削除されません。
306
334
 
307
335
  ルーティングの設定