2017-05-02 14:07:12 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class TwoFactorAuthenticationsController < BaseController
|
2018-12-17 04:40:51 -06:00
|
|
|
before_action :set_target_user
|
2017-05-02 14:07:12 -05:00
|
|
|
|
|
|
|
def destroy
|
2017-11-11 13:23:33 -06:00
|
|
|
authorize @user, :disable_2fa?
|
2017-05-02 14:07:12 -05:00
|
|
|
@user.disable_two_factor!
|
2017-11-23 19:05:53 -06:00
|
|
|
log_action :disable_2fa, @user
|
2017-05-02 14:07:12 -05:00
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-12-17 04:40:51 -06:00
|
|
|
def set_target_user
|
2017-05-02 14:07:12 -05:00
|
|
|
@user = User.find(params[:user_id])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|