Skip to content

Commit

Permalink
Fix error in recaptcha init
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Fagan committed Feb 21, 2020
1 parent 9fa408d commit 3487962
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/initializers/recaptcha.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Recaptcha.configure do |config|
config.site_key = ENV['RECAPTCHA_SECRET_KEY'] || '6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI'
config.site_key = ENV['RECAPTCHA_SITE_KEY'] || '6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI'
config.secret_key = ENV['RECAPTCHA_SECRET_KEY'] ||'6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe'
config.skip_verify_env << Rails.env if ENV['RECAPTCHA_DISABLE']
end

0 comments on commit 3487962

Please sign in to comment.