The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
465 B

  1. # frozen_string_literal: true
  2. module Admin
  3. class TwoFactorAuthenticationsController < BaseController
  4. before_action :set_target_user
  5. def destroy
  6. authorize @user, :disable_2fa?
  7. @user.disable_two_factor!
  8. log_action :disable_2fa, @user
  9. UserMailer.two_factor_disabled(@user).deliver_later!
  10. redirect_to admin_accounts_path
  11. end
  12. private
  13. def set_target_user
  14. @user = User.find(params[:user_id])
  15. end
  16. end
  17. end