gitlab-org--gitlab-foss/lib/gitlab/recaptcha.rb

21 lines
475 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Gitlab
module Recaptcha
def self.load_configurations!
if Gitlab::CurrentSettings.recaptcha_enabled
::Recaptcha.configure do |config|
config.public_key = Gitlab::CurrentSettings.recaptcha_site_key
config.private_key = Gitlab::CurrentSettings.recaptcha_private_key
end
true
end
end
def self.enabled?
Gitlab::CurrentSettings.recaptcha_enabled
end
end
end