Autofix Rubocop Style/IfUnlessModifier (#23697)

This commit is contained in:
Nick Schonning
2023-02-18 06:37:47 -05:00
committed by GitHub
parent 9ab2a775c9
commit e2a3ebb271
40 changed files with 55 additions and 271 deletions

View File

@ -30,9 +30,7 @@ class Auth::RegistrationsController < Devise::RegistrationsController
def update
super do |resource|
if resource.saved_change_to_encrypted_password?
resource.clear_other_sessions(current_session.session_id)
end
resource.clear_other_sessions(current_session.session_id) if resource.saved_change_to_encrypted_password?
end
end