回答編集履歴
1
test
CHANGED
@@ -1,3 +1,9 @@
|
|
1
1
|
`resources :two_step_verification, only: [:new, :create]`
|
2
|
+
なので、postへのrouteが無いです。
|
2
3
|
|
4
|
+
修正
|
5
|
+
resources :two_step_verification, only: [:new, :create]
|
6
|
+
であって、
|
7
|
+
resources :two_step_verifications, only: [:new, :create]
|
3
|
-
な
|
8
|
+
でないからですね。
|
9
|
+
|