summaryrefslogtreecommitdiff
path: root/app/controllers/profiles/u2f_registrations_controller.rb
blob: 32ca303e72207632210ac30b293d13a2ecc38920 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class Profiles::U2fRegistrationsController < Profiles::ApplicationController
  feature_category :authentication_and_authorization

  def destroy
    u2f_registration = current_user.u2f_registrations.find(params[:id])
    u2f_registration.destroy
    redirect_to profile_two_factor_auth_path, status: :found, notice: _("Successfully deleted U2F device.")
  end
end