about summary refs log tree commit diff
path: root/app/controllers/auth/passwords_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/auth/passwords_controller.rb')
-rw-r--r--app/controllers/auth/passwords_controller.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/controllers/auth/passwords_controller.rb b/app/controllers/auth/passwords_controller.rb
index b98bcecd0..5db2668f7 100644
--- a/app/controllers/auth/passwords_controller.rb
+++ b/app/controllers/auth/passwords_controller.rb
@@ -8,7 +8,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