Sha256: a3c9efa787e39d83df7b73c6b2d1b52cc7ec4e2a9e81c9a44acf72f4fec01923
Contents?: true
Size: 932 Bytes
Versions: 8
Compression:
Stored size: 932 Bytes
Contents
add_to_basket :warnings, :recaptcha_config_issues def recaptcha_config_issues? RecaptchaCard.using_defaults? end format :html do def recaptcha_config_issues_message wrap_with :p do if Card::Env.localhost? # %(Your captcha is currently working with temporary settings. # This is fine for a local installation, but you will need new # recaptcha keys if you want to make this site public.) t :recaptcha_captcha_temp, recaptcha_link: add_recaptcha_keys_link else # %(You are configured to use [[*captcha]], but for that to work # you need new recaptcha keys.) t :recaptcha_captcha_keys, recaptcha_link: add_recaptcha_keys_link, captcha_link: link_to_card(:captcha) end end end def add_recaptcha_keys_link Card[:recaptcha_settings]&.format&.edit_link link_text: t(:recaptcha_captcha_keys) end end
Version data entries
8 entries across 8 versions & 1 rubygems