12 lines
221 B
Ruby
12 lines
221 B
Ruby
module RecaptchaHelper
|
|
|
|
def recaptchable?(resource)
|
|
resource.new_record?
|
|
end
|
|
|
|
def recaptcha_keys?
|
|
Recaptcha.configuration.public_key.present? &&
|
|
Recaptcha.configuration.private_key.present?
|
|
end
|
|
|
|
end |