Disable captcha if registrations are disabled for various reasons

local
Claire 2 years ago
parent 6a2f248fe4
commit bf351d72af
  1. 2
      app/controllers/concerns/captcha_concern.rb

@ -23,6 +23,8 @@ module CaptchaConcern
end
def captcha_required?
return false if ENV['OMNIAUTH_ONLY'] == 'true'
return false unless Setting.registrations_mode != 'none' || @invite&.valid_for_use?
captcha_enabled? && !current_user && !(@invite.present? && @invite.valid_for_use? && !@invite.max_uses.nil?) && !captcha_recently_passed?
end

Loading…
Cancel
Save