summaryrefslogtreecommitdiffstats
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.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/controllers/admin/resets_controller.rb b/app/controllers/admin/resets_controller.rb
index 6db648403ec..00b590bf67b 100644
--- a/app/controllers/admin/resets_controller.rb
+++ b/app/controllers/admin/resets_controller.rb
@@ -2,17 +2,18 @@
module Admin
class ResetsController < BaseController
- before_action :set_account
+ before_action :set_user
def create
- @account.user.send_reset_password_instructions
+ authorize @user, :reset_password?
+ @user.send_reset_password_instructions
redirect_to admin_accounts_path
end
private
- def set_account
- @account = Account.find(params[:account_id])
+ def set_user
+ @user = Account.find(params[:account_id]).user || raise(ActiveRecord::RecordNotFound)
end
end
end