summaryrefslogtreecommitdiff
path: root/lib/gitlab/recaptcha.rb
blob: 6559c3e3c574285cad6b8e4972b05b9fee64cd83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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