2019-12-04 20:38:33 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
class DeviseFailure < Devise::FailureApp
|
|
|
|
# If the request format is not known, send a redirect instead of a 401
|
|
|
|
# response, since this is the outcome we're most likely to want
|
|
|
|
def http_auth?
|
|
|
|
request_format && super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-07-23 23:45:48 +05:30
|
|
|
|
|
|
|
Gitlab::DeviseFailure.prepend_mod
|