summaryrefslogtreecommitdiff
path: root/lib/gitlab/devise_failure.rb
blob: 4d27b706e1ef4db3839d23d761b67a69dbe23e63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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?
      return super unless Feature.enabled?(:devise_redirect_unknown_formats, default_enabled: true)

      request_format && super
    end
  end
end