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

recaptcha_experiment_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f15e92c0e99bfb59d57ee8bab95eb1e477c3d47a (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module RecaptchaExperimentHelper
  def show_recaptcha_sign_up?
    !!Gitlab::Recaptcha.enabled?
  end
end

RecaptchaExperimentHelper.prepend_if_ee('EE::RecaptchaExperimentHelper')