mirror of
https://github.com/internetee/registry.git
synced 2025-07-31 23:16:23 +02:00
Fixed codeclimate errors
This commit is contained in:
parent
ecb23b4119
commit
bcd1b3f745
3 changed files with 4 additions and 8 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue