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