質問編集履歴
1
routesの追記をしました!
title
CHANGED
File without changes
|
body
CHANGED
@@ -95,5 +95,51 @@
|
|
95
95
|
end
|
96
96
|
```
|
97
97
|
|
98
|
+
rails routes
|
99
|
+
```ここに言語を入力
|
100
|
+
Prefix Verb URI Pattern Controller#Action
|
101
|
+
tasks_new GET /tasks/new(.:format) tasks#new
|
102
|
+
new_user_session GET /users/sign_in(.:format) devise/sessions#new
|
103
|
+
user_session POST /users/sign_in(.:format) devise/sessions#create
|
104
|
+
destroy_user_session DELETE /users/sign_out(.:format) devise/sessions#destroy
|
105
|
+
new_user_password GET /users/password/new(.:format) devise/passwords#new
|
106
|
+
edit_user_password GET /users/password/edit(.:format) devise/passwords#edit
|
107
|
+
user_password PATCH /users/password(.:format) devise/passwords#update
|
108
|
+
PUT /users/password(.:format) devise/passwords#update
|
109
|
+
POST /users/password(.:format) devise/passwords#create
|
110
|
+
cancel_user_registration GET /users/cancel(.:format) devise/registrations#cancel
|
111
|
+
new_user_registration GET /users/sign_up(.:format) devise/registrations#new
|
112
|
+
edit_user_registration GET /users/edit(.:format) devise/registrations#edit
|
113
|
+
user_registration PATCH /users(.:format) devise/registrations#update
|
114
|
+
PUT /users(.:format) devise/registrations#update
|
115
|
+
DELETE /users(.:format) devise/registrations#destroy
|
116
|
+
POST /users(.:format) devise/registrations#create
|
117
|
+
root GET / homes#index
|
118
|
+
users GET /users(.:format) users#index
|
119
|
+
POST /users(.:format) users#create
|
120
|
+
new_user GET /users/new(.:format) users#new
|
121
|
+
edit_user GET /users/:id/edit(.:format) users#edit
|
122
|
+
user GET /users/:id(.:format) users#show
|
123
|
+
PATCH /users/:id(.:format) users#update
|
124
|
+
PUT /users/:id(.:format) users#update
|
125
|
+
DELETE /users/:id(.:format) users#destroy
|
126
|
+
tasks GET /tasks(.:format) tasks#index
|
127
|
+
categories POST /categories(.:format) categories#create
|
128
|
+
search_categories GET /categories/search(.:format) categories#search
|
129
|
+
GET /categories(.:format) categories#index
|
130
|
+
POST /categories(.:format) categories#create
|
131
|
+
new_category GET /categories/new(.:format) categories#new
|
132
|
+
edit_category GET /categories/:id/edit(.:format) categories#edit
|
133
|
+
category GET /categories/:id(.:format) categories#show
|
134
|
+
PATCH /categories/:id(.:format) categories#update
|
135
|
+
PUT /categories/:id(.:format) categories#update
|
136
|
+
DELETE /categories/:id(.:format) categories#destroy
|
137
|
+
rails_service_blob GET /rails/active_storage/blobs/:signed_id/*filename(.:format) active_storage/blobs#show
|
138
|
+
rails_blob_representation GET /rails/active_storage/representations/:signed_blob_id/:variation_key/*filename(.:format) active_storage/representations#show
|
139
|
+
rails_disk_service GET /rails/active_storage/disk/:encoded_key/*filename(.:format) active_storage/disk#show
|
140
|
+
update_rails_disk_service PUT /rails/active_storage/disk/:encoded_token(.:format) active_storage/disk#update
|
141
|
+
rails_direct_uploads POST /rails/active_storage/direct_uploads(.:format) active_storage/direct_uploads#create
|
142
|
+
```
|
143
|
+
|
98
144
|
どこが悪いのか分からず、悩んでいます。
|
99
145
|
どなたか原因がわかる方がいらっしゃればご指摘・アドバイスをよろしくお願い致します。
|