質問編集履歴
1
routesの追記をしました!
test
CHANGED
File without changes
|
test
CHANGED
@@ -192,6 +192,98 @@
|
|
192
192
|
|
193
193
|
|
194
194
|
|
195
|
+
rails routes
|
196
|
+
|
197
|
+
```ここに言語を入力
|
198
|
+
|
199
|
+
Prefix Verb URI Pattern Controller#Action
|
200
|
+
|
201
|
+
tasks_new GET /tasks/new(.:format) tasks#new
|
202
|
+
|
203
|
+
new_user_session GET /users/sign_in(.:format) devise/sessions#new
|
204
|
+
|
205
|
+
user_session POST /users/sign_in(.:format) devise/sessions#create
|
206
|
+
|
207
|
+
destroy_user_session DELETE /users/sign_out(.:format) devise/sessions#destroy
|
208
|
+
|
209
|
+
new_user_password GET /users/password/new(.:format) devise/passwords#new
|
210
|
+
|
211
|
+
edit_user_password GET /users/password/edit(.:format) devise/passwords#edit
|
212
|
+
|
213
|
+
user_password PATCH /users/password(.:format) devise/passwords#update
|
214
|
+
|
215
|
+
PUT /users/password(.:format) devise/passwords#update
|
216
|
+
|
217
|
+
POST /users/password(.:format) devise/passwords#create
|
218
|
+
|
219
|
+
cancel_user_registration GET /users/cancel(.:format) devise/registrations#cancel
|
220
|
+
|
221
|
+
new_user_registration GET /users/sign_up(.:format) devise/registrations#new
|
222
|
+
|
223
|
+
edit_user_registration GET /users/edit(.:format) devise/registrations#edit
|
224
|
+
|
225
|
+
user_registration PATCH /users(.:format) devise/registrations#update
|
226
|
+
|
227
|
+
PUT /users(.:format) devise/registrations#update
|
228
|
+
|
229
|
+
DELETE /users(.:format) devise/registrations#destroy
|
230
|
+
|
231
|
+
POST /users(.:format) devise/registrations#create
|
232
|
+
|
233
|
+
root GET / homes#index
|
234
|
+
|
235
|
+
users GET /users(.:format) users#index
|
236
|
+
|
237
|
+
POST /users(.:format) users#create
|
238
|
+
|
239
|
+
new_user GET /users/new(.:format) users#new
|
240
|
+
|
241
|
+
edit_user GET /users/:id/edit(.:format) users#edit
|
242
|
+
|
243
|
+
user GET /users/:id(.:format) users#show
|
244
|
+
|
245
|
+
PATCH /users/:id(.:format) users#update
|
246
|
+
|
247
|
+
PUT /users/:id(.:format) users#update
|
248
|
+
|
249
|
+
DELETE /users/:id(.:format) users#destroy
|
250
|
+
|
251
|
+
tasks GET /tasks(.:format) tasks#index
|
252
|
+
|
253
|
+
categories POST /categories(.:format) categories#create
|
254
|
+
|
255
|
+
search_categories GET /categories/search(.:format) categories#search
|
256
|
+
|
257
|
+
GET /categories(.:format) categories#index
|
258
|
+
|
259
|
+
POST /categories(.:format) categories#create
|
260
|
+
|
261
|
+
new_category GET /categories/new(.:format) categories#new
|
262
|
+
|
263
|
+
edit_category GET /categories/:id/edit(.:format) categories#edit
|
264
|
+
|
265
|
+
category GET /categories/:id(.:format) categories#show
|
266
|
+
|
267
|
+
PATCH /categories/:id(.:format) categories#update
|
268
|
+
|
269
|
+
PUT /categories/:id(.:format) categories#update
|
270
|
+
|
271
|
+
DELETE /categories/:id(.:format) categories#destroy
|
272
|
+
|
273
|
+
rails_service_blob GET /rails/active_storage/blobs/:signed_id/*filename(.:format) active_storage/blobs#show
|
274
|
+
|
275
|
+
rails_blob_representation GET /rails/active_storage/representations/:signed_blob_id/:variation_key/*filename(.:format) active_storage/representations#show
|
276
|
+
|
277
|
+
rails_disk_service GET /rails/active_storage/disk/:encoded_key/*filename(.:format) active_storage/disk#show
|
278
|
+
|
279
|
+
update_rails_disk_service PUT /rails/active_storage/disk/:encoded_token(.:format) active_storage/disk#update
|
280
|
+
|
281
|
+
rails_direct_uploads POST /rails/active_storage/direct_uploads(.:format) active_storage/direct_uploads#create
|
282
|
+
|
283
|
+
```
|
284
|
+
|
285
|
+
|
286
|
+
|
195
287
|
どこが悪いのか分からず、悩んでいます。
|
196
288
|
|
197
289
|
どなたか原因がわかる方がいらっしゃればご指摘・アドバイスをよろしくお願い致します。
|