8 lines
127 B
Ruby
8 lines
127 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module RecaptchaHelper
|
||
|
def show_recaptcha_sign_up?
|
||
|
!!Gitlab::Recaptcha.enabled?
|
||
|
end
|
||
|
end
|