demarches-normaliennes/app/controllers/user/custom_failure.rb
2015-08-20 16:40:34 +02:00

14 lines
266 B
Ruby

class User::CustomFailure < Devise::FailureApp
def redirect_url
url_for(controller: '/start', action: :index)
end
# You need to override respond to eliminate recall
def respond
if http_auth?
http_auth
else
redirect
end
end
end