Fixed codeclimate errors

This commit is contained in:
Sergei Tsõganov 2022-04-14 14:28:26 +03:00
parent ecb23b4119
commit bcd1b3f745
3 changed files with 4 additions and 8 deletions

View file

@ -19,14 +19,12 @@ module Actions
def maybe_change_email
return if Rails.env.test?
[:regex, :mx].each do |m|
%i[regex mx].each do |m|
result = Actions::SimpleMailValidator.run(email: contact.email, level: m)
next if result
err_text = "email '#{contact.email}' didn't pass validation"
contact.add_epp_error('2005', nil, nil,
"#{I18n.t(:parameter_value_syntax_error)} #{err_text}")
contact.add_epp_error('2005', nil, nil, "#{I18n.t(:parameter_value_syntax_error)} #{err_text}")
@error = true
return
end

View file

@ -28,8 +28,7 @@ module Actions
next if result
err_text = "email '#{new_attributes[:email]}' didn't pass validation"
contact.add_epp_error('2005', nil, nil,
"#{I18n.t(:parameter_value_syntax_error)} #{err_text}")
contact.add_epp_error('2005', nil, nil, "#{I18n.t(:parameter_value_syntax_error)} #{err_text}")
@error = true
return
end

View file

@ -141,8 +141,7 @@ module Actions
next if result
err_text = "email #{email} didn't pass validation"
domain.add_epp_error('2005', nil, nil,
"#{I18n.t(:parameter_value_syntax_error)} #{err_text}")
domain.add_epp_error('2005', nil, nil, "#{I18n.t(:parameter_value_syntax_error)} #{err_text}")
@error = true
return
end