about summary refs log tree commit diff
path: root/app/controllers/admin/resets_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/admin/resets_controller.rb')
-rw-r--r--app/controllers/admin/resets_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/admin/resets_controller.rb b/app/controllers/admin/resets_controller.rb
index db8f61d64..7962b7a58 100644
--- a/app/controllers/admin/resets_controller.rb
+++ b/app/controllers/admin/resets_controller.rb
@@ -6,9 +6,9 @@ module Admin
 
     def create
       authorize @user, :reset_password?
-      @user.send_reset_password_instructions
+      @user.reset_password!
       log_action :reset_password, @user
-      redirect_to admin_accounts_path
+      redirect_to admin_account_path(@user.account_id)
     end
   end
 end