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