debian-mirror-gitlab/lib/gitlab/devise_failure.rb
2021-11-11 11:23:49 +05:30

12 lines
298 B
Ruby

# 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