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