Disable captcha if registrations are disabled for various reasons
This commit is contained in:
		
							parent
							
								
									6a2f248fe4
								
							
						
					
					
						commit
						bf351d72af
					
				
					 1 changed files with 2 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -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…
	
		Reference in a new issue