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: 0df62f7b715574158c02fc3ea63a68a94d815c31 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

RecaptchaHelper.prepend_mod