Welcome to mirror list, hosted at ThFree Co, Russian Federation.

recaptcha.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70e7f25d518f6f62d0b2c969d2c5e104829d707a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Gitlab
  module Recaptcha
    def self.load_configurations!
      if current_application_settings.recaptcha_enabled
        ::Recaptcha.configure do |config|
          config.public_key  = current_application_settings.recaptcha_site_key
          config.private_key = current_application_settings.recaptcha_private_key
        end

        true
      end
    end
  end
end