1

私は工夫を凝らしたサイトを持っていました。ActiveAdminをインストールして削除しました。
これで、パスの完全なリストは次のようになります。

rake routes
    new_user_session GET    /users/sign_in(.:format)               {:action=>"new", :controller=>"devise/sessions"}
        user_session POST   /users/sign_in(.:format)               {:action=>"create", :controller=>"devise/sessions"}
destroy_user_session DELETE /users/sign_out(.:format)              {:action=>"destroy", :controller=>"devise/sessions"}
       user_password POST   /users/password(.:format)              {:action=>"create", :controller=>"devise/passwords"}
   new_user_password GET    /users/password/new(.:format)          {:action=>"new", :controller=>"devise/passwords"}
  edit_user_password GET    /users/password/edit(.:format)         {:action=>"edit", :controller=>"devise/passwords"}
                     PUT    /users/password(.:format)              {:action=>"update", :controller=>"devise/passwords"}
                root        /                                      {:controller=>"codes", :action=>"list"}
                            /:controller(/:action(/:id(.:format)))

devisewikiで説明されているnew_user_registration_pathやのようなパスはありません。 そのリンクを復元するにはどうすればよいですか? edit_user_registration_path

4

1 に答える 1

2

ユーザーモデル(またはデバイスを使用しているモデル)を正しいオプションで構成しましたか?https://github.com/plataformatec/devise#configuring-modelsを参照してください

あなたはおそらく行方不明です:

devise :registerable
于 2013-01-10T05:36:00.710 に答える