1
0
REI-Fixed/app/controllers/admin/resets_controller.rb
Eugen Rochko 771c9d4ba8
Add ability to skip sign-in token authentication for specific users ()
Remove "active within last two weeks" exception for sign in token requirement

Change admin reset password to lock access until the password is reset
2021-07-08 05:31:28 +02:00

15 lines
311 B
Ruby

# frozen_string_literal: true
module Admin
class ResetsController < BaseController
before_action :set_user
def create
authorize @user, :reset_password?
@user.reset_password!
log_action :reset_password, @user
redirect_to admin_account_path(@user.account_id)
end
end
end