9 lines
156 B
Ruby
9 lines
156 B
Ruby
# frozen_string_literal: true
|
|
|
|
module RecaptchaHelper
|
|
def show_recaptcha_sign_up?
|
|
!!Gitlab::Recaptcha.enabled?
|
|
end
|
|
end
|
|
|
|
RecaptchaHelper.prepend_mod
|