質問編集履歴

1

コード追記

2021/04/06 11:23

投稿

h2_hero_hh
h2_hero_hh

スコア2

test CHANGED
File without changes
test CHANGED
@@ -368,6 +368,64 @@
368
368
 
369
369
  ```
370
370
 
371
+ rails routes
372
+
373
+ ```
374
+
375
+ Prefix Verb URI Pattern
376
+
377
+ new_student_session GET /students/sign_in(.:format) students/sessions#new
378
+
379
+ student_session POST /students/sign_in(.:format) students/sessions#create
380
+
381
+ destroy_student_session DELETE /students/sign_out(.:format) students/sessions#destroy
382
+
383
+ new_student_password GET /students/password/new(.:format) students/passwords#new
384
+
385
+ edit_student_password GET /students/password/edit(.:format) students/passwords#edit
386
+
387
+ student_password PATCH /students/password(.:format) students/passwords#update
388
+
389
+ PUT /students/password(.:format) students/passwords#update
390
+
391
+ POST /students/password(.:format) students/passwords#create
392
+
393
+ cancel_student_registration GET /students/cancel(.:format) students/registrations#cancel
394
+
395
+ new_student_registration GET /students/sign_up(.:format) students/registrations#new
396
+
397
+ edit_student_registration GET /students/edit(.:format) students/registrations#edit
398
+
399
+ student_registration PATCH /students(.:format) students/registrations#update
400
+
401
+ PUT /students(.:format) students/registrations#update
402
+
403
+ DELETE /students(.:format) students/registrations#destroy
404
+
405
+ POST /students(.:format) students/registrations#create
406
+
407
+ search_homerooms GET /homerooms/search(.:format) homerooms#search
408
+
409
+ homerooms GET /homerooms(.:format) homerooms#index
410
+
411
+ POST /homerooms(.:format) homerooms#create
412
+
413
+ new_homeroom GET /homerooms/new(.:format) homerooms#new
414
+
415
+ edit_homeroom GET /homerooms/:id/edit(.:format) homerooms#edit
416
+
417
+ homeroom GET /homerooms/:id(.:format) homerooms#show
418
+
419
+ PATCH /homerooms/:id(.:format) homerooms#update
420
+
421
+ PUT /homerooms/:id(.:format) homerooms#update
422
+
423
+ DELETE /homerooms/:id(.:format) homerooms#destroy
424
+
425
+ ```
426
+
427
+
428
+
371
429
  ### 試したこと
372
430
 
373
431