0
Railsのドキュメントをリダイレクトは、リダイレクトする方法について説明が間違っていると言う:Railsの工夫確認できる - 工夫のため
https://github.com/plataformatec/devise/wiki/How-To:-Add-:confirmable-to-Users#redirecting-user
は誰もがこれを行う方法を知っていますか?
Railsのドキュメントをリダイレクトは、リダイレクトする方法について説明が間違っていると言う:Railsの工夫確認できる - 工夫のため
https://github.com/plataformatec/devise/wiki/How-To:-Add-:confirmable-to-Users#redirecting-user
は誰もがこれを行う方法を知っていますか?
あなたはdevise confirmationコントローラをオーバーライドする必要があります。あなたのroutes.rbを内 は
devise_for :users, controllers: { confirmations: 'confirmations' }
この行を追加するには、サーバを再起動する必要があり
class ConfirmationsController < Devise::ConfirmationsController
private
def after_confirmation_path_for(resource_name, resource)
your_new_after_confirmation_path #your path where you want to land
end
end
このコードをでファイルを作成して貼り付けます。
ソース:https://github.com/plataformatec/devise/wiki/How-To:-Add-:confirmable-to-Users#redirecting-user
あなたは 'after_confirmation_path_for'を試しましたか? – niceman