2017-04-15 23:44:59 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class ResetsController < BaseController
|
2017-11-12 04:23:33 +09:00
|
|
|
before_action :set_user
|
2017-04-15 23:44:59 +09:00
|
|
|
|
|
|
|
def create
|
2017-11-12 04:23:33 +09:00
|
|
|
authorize @user, :reset_password?
|
2021-07-08 12:31:28 +09:00
|
|
|
@user.reset_password!
|
2017-11-24 10:05:53 +09:00
|
|
|
log_action :reset_password, @user
|
2021-07-08 12:31:28 +09:00
|
|
|
redirect_to admin_account_path(@user.account_id)
|
2017-04-15 23:44:59 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|