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.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/controllers/admin/resets_controller.rb b/app/controllers/admin/resets_controller.rb
new file mode 100644
index 000000000..6db648403
--- /dev/null
+++ b/app/controllers/admin/resets_controller.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+
+module Admin
+  class ResetsController < BaseController
+    before_action :set_account
+
+    def create
+      @account.user.send_reset_password_instructions
+      redirect_to admin_accounts_path
+    end
+
+    private
+
+    def set_account
+      @account = Account.find(params[:account_id])
+    end
+  end
+end