質問編集履歴
2
rails routesの結果を追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -152,6 +152,39 @@
|
|
152
152
|
|
153
153
|
```
|
154
154
|
|
155
|
+
### rails routesの結果
|
156
|
+
```
|
157
|
+
$ rails routes
|
158
|
+
Prefix Verb URI Pattern Controller#Action
|
159
|
+
new_user_session GET /users/sign_in(.:format) users/sessions#new
|
160
|
+
user_session POST /users/sign_in(.:format) users/sessions#create
|
161
|
+
destroy_user_session DELETE /users/sign_out(.:format) users/sessions#destroy
|
162
|
+
new_user_password GET /users/password/new(.:format) devise/passwords#new
|
163
|
+
edit_user_password GET /users/password/edit(.:format) devise/passwords#edit
|
164
|
+
user_password PATCH /users/password(.:format) devise/passwords#update
|
165
|
+
PUT /users/password(.:format) devise/passwords#update
|
166
|
+
POST /users/password(.:format) devise/passwords#create
|
167
|
+
cancel_user_registration GET /users/cancel(.:format) users/registrations#cancel
|
168
|
+
new_user_registration GET /users/sign_up(.:format) users/registrations#new
|
169
|
+
edit_user_registration GET /users/edit(.:format) users/registrations#edit
|
170
|
+
user_registration PATCH /users(.:format) users/registrations#update
|
171
|
+
PUT /users(.:format) users/registrations#update
|
172
|
+
DELETE /users(.:format) users/registrations#destroy
|
173
|
+
POST /users(.:format) users/registrations#create
|
174
|
+
root GET / articles#index
|
175
|
+
articles_search GET /articles/search(.:format) articles#search
|
176
|
+
articles GET /articles(.:format) articles#index
|
177
|
+
POST /articles(.:format) articles#create
|
178
|
+
new_article GET /articles/new(.:format) articles#new
|
179
|
+
edit_article GET /articles/:id/edit(.:format) articles#edit
|
180
|
+
article GET /articles/:id(.:format) articles#show
|
181
|
+
PATCH /articles/:id(.:format) articles#update
|
182
|
+
PUT /articles/:id(.:format) articles#update
|
183
|
+
DELETE /articles/:id(.:format) articles#destroy
|
184
|
+
refile_app /attachments #<Refile::App app_file="/home/ec2-user/.rvm/gems/ruby-2.6.3/bundler/gems/refile-e690bf5c2d83/lib/refile/app.rb">
|
185
|
+
|
186
|
+
```
|
187
|
+
|
155
188
|
### 補足情報(FW/ツールのバージョンなど)
|
156
189
|
|
157
190
|
AWS Cloud9
|
1
追加情報(スクショ)
title
CHANGED
File without changes
|
body
CHANGED
@@ -8,6 +8,7 @@
|
|
8
8
|
### 発生している問題・エラーメッセージ
|
9
9
|

|
10
10
|

|
11
|
+

|
11
12
|
|
12
13
|
|
13
14
|
### routes.rb
|