26 lines
605 B
Ruby
26 lines
605 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Recaptcha
|
|
extend Gitlab::Utils::StrongMemoize
|
|
|
|
def self.load_configurations!
|
|
if enabled? || enabled_on_login?
|
|
::Recaptcha.configure do |config|
|
|
config.site_key = Gitlab::CurrentSettings.recaptcha_site_key
|
|
config.secret_key = Gitlab::CurrentSettings.recaptcha_private_key
|
|
end
|
|
|
|
true
|
|
end
|
|
end
|
|
|
|
def self.enabled?
|
|
Gitlab::CurrentSettings.recaptcha_enabled
|
|
end
|
|
|
|
def self.enabled_on_login?
|
|
Gitlab::CurrentSettings.login_recaptcha_protection_enabled
|
|
end
|
|
end
|
|
end
|