Fix Rails/DeprecatedActiveModelErrorsMethods cop (#24742)
This commit is contained in:
parent
b5c4b47746
commit
24491abf6d
2 changed files with 6 additions and 12 deletions
|
@ -121,10 +121,10 @@ module Mastodon
|
|||
say('OK', :green)
|
||||
say("New password: #{password}")
|
||||
else
|
||||
user.errors.to_h.each do |key, error|
|
||||
user.errors.each do |error|
|
||||
say('Failure/Error: ', :red)
|
||||
say(key)
|
||||
say(" #{error}", :red)
|
||||
say(error.attribute)
|
||||
say(" #{error.type}", :red)
|
||||
end
|
||||
|
||||
exit(1)
|
||||
|
@ -197,10 +197,10 @@ module Mastodon
|
|||
say('OK', :green)
|
||||
say("New password: #{password}") if options[:reset_password]
|
||||
else
|
||||
user.errors.to_h.each do |key, error|
|
||||
user.errors.each do |error|
|
||||
say('Failure/Error: ', :red)
|
||||
say(key)
|
||||
say(" #{error}", :red)
|
||||
say(error.attribute)
|
||||
say(" #{error.type}", :red)
|
||||
end
|
||||
|
||||
exit(1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue