demarches-normaliennes/app/controllers/user/custom_failure.rb
2015-08-10 11:05:06 +02:00

14 lines
No EOL
267 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