質問編集履歴
1
コード追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -183,6 +183,35 @@
|
|
183
183
|
</div>
|
184
184
|
<% end %>
|
185
185
|
```
|
186
|
+
rails routes
|
187
|
+
```
|
188
|
+
Prefix Verb URI Pattern
|
189
|
+
new_student_session GET /students/sign_in(.:format) students/sessions#new
|
190
|
+
student_session POST /students/sign_in(.:format) students/sessions#create
|
191
|
+
destroy_student_session DELETE /students/sign_out(.:format) students/sessions#destroy
|
192
|
+
new_student_password GET /students/password/new(.:format) students/passwords#new
|
193
|
+
edit_student_password GET /students/password/edit(.:format) students/passwords#edit
|
194
|
+
student_password PATCH /students/password(.:format) students/passwords#update
|
195
|
+
PUT /students/password(.:format) students/passwords#update
|
196
|
+
POST /students/password(.:format) students/passwords#create
|
197
|
+
cancel_student_registration GET /students/cancel(.:format) students/registrations#cancel
|
198
|
+
new_student_registration GET /students/sign_up(.:format) students/registrations#new
|
199
|
+
edit_student_registration GET /students/edit(.:format) students/registrations#edit
|
200
|
+
student_registration PATCH /students(.:format) students/registrations#update
|
201
|
+
PUT /students(.:format) students/registrations#update
|
202
|
+
DELETE /students(.:format) students/registrations#destroy
|
203
|
+
POST /students(.:format) students/registrations#create
|
204
|
+
search_homerooms GET /homerooms/search(.:format) homerooms#search
|
205
|
+
homerooms GET /homerooms(.:format) homerooms#index
|
206
|
+
POST /homerooms(.:format) homerooms#create
|
207
|
+
new_homeroom GET /homerooms/new(.:format) homerooms#new
|
208
|
+
edit_homeroom GET /homerooms/:id/edit(.:format) homerooms#edit
|
209
|
+
homeroom GET /homerooms/:id(.:format) homerooms#show
|
210
|
+
PATCH /homerooms/:id(.:format) homerooms#update
|
211
|
+
PUT /homerooms/:id(.:format) homerooms#update
|
212
|
+
DELETE /homerooms/:id(.:format) homerooms#destroy
|
213
|
+
```
|
214
|
+
|
186
215
|
### 試したこと
|
187
216
|
|
188
217
|
ルーティング・コントローラーの確認
|