2011-07-12 10 views

答えて

6

は、次の操作を行います

詐欺でイチジク/初期化子/ devise.rb:

config.warden do |manager| 
    manager.failure_app = CustomAuthenticationFailure 
    end 

のlib/custom_authentication_failure.rbと呼ばれる新しいファイルを作成します。あなたのconfig/application.rbに

class CustomAuthenticationFailure < Devise::FailureApp 
    protected 
    def redirect_url 
     root_path #or whatever route in your app that points to '/' 
    end 
    end 

そして、この:

config.autoload_paths += %W(#{config.root}/lib) 
2

にredirect_toしたい、私は具体的には、自動工夫クラスauthenticate_user!するためのオプションを探しています、と言いますここでは、私は、これはトリックを行う必要がありDevise Wiki特に

思う:

Change default sign in and sign out routes

関連する問題