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