diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-01-24 21:29:50 +0100 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2022-01-24 21:29:50 +0100 |
commit | 04050fbd46d7758873b33dd6f5648cc37183b078 (patch) | |
tree | 97c4dff710f340070518d5bdf92c02e814748ed5 | |
parent | 1b493c9fee954b5bd4c4b00f9f945a5d97e2d699 (diff) |
Please CodeClimate
-rw-r--r-- | Gemfile | 2 | ||||
-rw-r--r-- | app/controllers/concerns/captcha_concern.rb | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Gemfile b/Gemfile index 282ab65e4..67c50d19f 100644 --- a/Gemfile +++ b/Gemfile @@ -157,4 +157,4 @@ gem 'connection_pool', require: false gem 'xorcist', '~> 1.1' -gem "hcaptcha", "~> 7.1" +gem 'hcaptcha', '~> 7.1' diff --git a/app/controllers/concerns/captcha_concern.rb b/app/controllers/concerns/captcha_concern.rb index 5a23e59e3..5bc4ba920 100644 --- a/app/controllers/concerns/captcha_concern.rb +++ b/app/controllers/concerns/captcha_concern.rb @@ -35,14 +35,14 @@ module CaptchaConcern if verify_hcaptcha session[:captcha_passed_at] = Time.now.utc - return true + true else if block_given? message = flash[:hcaptcha_error] flash.delete(:hcaptcha_error) yield message end - return false + false end end |