The code powering m.abunchtell.com https://m.abunchtell.com
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

22 righe
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