2017-04-15 14:44:59 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class ResetsController < BaseController
|
2017-11-11 19:23:33 +00:00
|
|
|
before_action :set_user
|
2017-04-15 14:44:59 +00:00
|
|
|
|
|
|
|
def create
|
2017-11-11 19:23:33 +00:00
|
|
|
authorize @user, :reset_password?
|
|
|
|
@user.send_reset_password_instructions
|
2017-11-24 01:05:53 +00:00
|
|
|
log_action :reset_password, @user
|
2017-04-15 14:44:59 +00:00
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|