This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-05-02 21:07:12 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class TwoFactorAuthenticationsController < BaseController
|
2018-12-17 11:40:51 +01:00
|
|
|
before_action :set_target_user
|
2017-05-02 21:07:12 +02:00
|
|
|
|
|
|
|
def destroy
|
2017-11-11 20:23:33 +01:00
|
|
|
authorize @user, :disable_2fa?
|
2017-05-02 21:07:12 +02:00
|
|
|
@user.disable_two_factor!
|
2017-11-24 02:05:53 +01:00
|
|
|
log_action :disable_2fa, @user
|
2017-05-02 21:07:12 +02:00
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-12-17 11:40:51 +01:00
|
|
|
def set_target_user
|
2017-05-02 21:07:12 +02:00
|
|
|
@user = User.find(params[:user_id])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|