質問編集履歴
2
rails routesの結果を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -306,6 +306,72 @@
|
|
306
306
|
|
307
307
|
|
308
308
|
|
309
|
+
### rails routesの結果
|
310
|
+
|
311
|
+
```
|
312
|
+
|
313
|
+
$ rails routes
|
314
|
+
|
315
|
+
Prefix Verb URI Pattern Controller#Action
|
316
|
+
|
317
|
+
new_user_session GET /users/sign_in(.:format) users/sessions#new
|
318
|
+
|
319
|
+
user_session POST /users/sign_in(.:format) users/sessions#create
|
320
|
+
|
321
|
+
destroy_user_session DELETE /users/sign_out(.:format) users/sessions#destroy
|
322
|
+
|
323
|
+
new_user_password GET /users/password/new(.:format) devise/passwords#new
|
324
|
+
|
325
|
+
edit_user_password GET /users/password/edit(.:format) devise/passwords#edit
|
326
|
+
|
327
|
+
user_password PATCH /users/password(.:format) devise/passwords#update
|
328
|
+
|
329
|
+
PUT /users/password(.:format) devise/passwords#update
|
330
|
+
|
331
|
+
POST /users/password(.:format) devise/passwords#create
|
332
|
+
|
333
|
+
cancel_user_registration GET /users/cancel(.:format) users/registrations#cancel
|
334
|
+
|
335
|
+
new_user_registration GET /users/sign_up(.:format) users/registrations#new
|
336
|
+
|
337
|
+
edit_user_registration GET /users/edit(.:format) users/registrations#edit
|
338
|
+
|
339
|
+
user_registration PATCH /users(.:format) users/registrations#update
|
340
|
+
|
341
|
+
PUT /users(.:format) users/registrations#update
|
342
|
+
|
343
|
+
DELETE /users(.:format) users/registrations#destroy
|
344
|
+
|
345
|
+
POST /users(.:format) users/registrations#create
|
346
|
+
|
347
|
+
root GET / articles#index
|
348
|
+
|
349
|
+
articles_search GET /articles/search(.:format) articles#search
|
350
|
+
|
351
|
+
articles GET /articles(.:format) articles#index
|
352
|
+
|
353
|
+
POST /articles(.:format) articles#create
|
354
|
+
|
355
|
+
new_article GET /articles/new(.:format) articles#new
|
356
|
+
|
357
|
+
edit_article GET /articles/:id/edit(.:format) articles#edit
|
358
|
+
|
359
|
+
article GET /articles/:id(.:format) articles#show
|
360
|
+
|
361
|
+
PATCH /articles/:id(.:format) articles#update
|
362
|
+
|
363
|
+
PUT /articles/:id(.:format) articles#update
|
364
|
+
|
365
|
+
DELETE /articles/:id(.:format) articles#destroy
|
366
|
+
|
367
|
+
refile_app /attachments #<Refile::App app_file="/home/ec2-user/.rvm/gems/ruby-2.6.3/bundler/gems/refile-e690bf5c2d83/lib/refile/app.rb">
|
368
|
+
|
369
|
+
|
370
|
+
|
371
|
+
```
|
372
|
+
|
373
|
+
|
374
|
+
|
309
375
|
### 補足情報(FW/ツールのバージョンなど)
|
310
376
|
|
311
377
|
|
1
追加情報(スクショ)
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,6 +18,8 @@
|
|
18
18
|
|
19
19
|
![イメージ説明](6b12e6da98bab40141e0f963fa072a52.png)
|
20
20
|
|
21
|
+
![イメージ説明](74803239bff16c3fbd022bb0901b0095.png)
|
22
|
+
|
21
23
|
|
22
24
|
|
23
25
|
|