diff options
author | Thibaut Girka <thib@sitedethib.com> | 2020-07-07 15:34:00 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2020-07-07 15:58:45 +0200 |
commit | e9ad99bc93b6f65277956d997792ec40f08165cb (patch) | |
tree | ce71714d2d0d680adecf070cb4e698f3a6984b56 /app/controllers/auth/passwords_controller.rb | |
parent | 94e09d309cb068ea92919767e40e655260ac43cb (diff) | |
parent | 6e25574ce599cbc37b7215ded03c7d07208af6bb (diff) |
Merge branch 'master' into glitch-soc/merge-upstream
Conflicts: - `package.json`: Not really a conflict, just some glitch-soc-specific dependency too close to an upstream-updated one.
Diffstat (limited to 'app/controllers/auth/passwords_controller.rb')
-rw-r--r-- | app/controllers/auth/passwords_controller.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/controllers/auth/passwords_controller.rb b/app/controllers/auth/passwords_controller.rb index c224e1a03..42534f8ce 100644 --- a/app/controllers/auth/passwords_controller.rb +++ b/app/controllers/auth/passwords_controller.rb @@ -9,7 +9,10 @@ class Auth::PasswordsController < Devise::PasswordsController def update super do |resource| - resource.session_activations.destroy_all if resource.errors.empty? + if resource.errors.empty? + resource.session_activations.destroy_all + resource.forget_me! + end end end |