forked from cybrespace/mastodon
		
	fix: Don't validate MX record in development (#7654)
This commit is contained in:
		
							parent
							
								
									c0355878ba
								
							
						
					
					
						commit
						03f4c214b4
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -4,7 +4,7 @@ require 'resolv'
 | 
			
		|||
 | 
			
		||||
class EmailMxValidator < ActiveModel::Validator
 | 
			
		||||
  def validate(user)
 | 
			
		||||
    return if Rails.env.test?
 | 
			
		||||
    return if Rails.env.test? || Rails.env.development?
 | 
			
		||||
    user.errors.add(:email, I18n.t('users.invalid_email')) if invalid_mx?(user.email)
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue