25 lines
		
	
	
		
			597 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			597 B
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
module Gitlab
 | 
						|
  module Recaptcha
 | 
						|
    def self.load_configurations!
 | 
						|
      if Gitlab::CurrentSettings.recaptcha_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
 |