mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 16:39:52 +01:00
6 lines
204 B
Ruby
6 lines
204 B
Ruby
return unless APP_CONFIG.dig(:hcaptcha, :enabled)
|
|
|
|
Hcaptcha.configure do |config|
|
|
config.site_key = APP_CONFIG.dig(:hcaptcha, :site_key)
|
|
config.secret_key = APP_CONFIG.dig(:hcaptcha, :secret_key)
|
|
end
|