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

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

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