debian-mirror-gitlab/app/controllers/profiles/webauthn_registrations_controller.rb

13 lines
421 B
Ruby
Raw Normal View History

2020-11-24 15:15:51 +05:30
# frozen_string_literal: true
class Profiles::WebauthnRegistrationsController < Profiles::ApplicationController
2021-01-03 14:25:43 +05:30
feature_category :authentication_and_authorization
2020-11-24 15:15:51 +05:30
def destroy
webauthn_registration = current_user.webauthn_registrations.find(params[:id])
webauthn_registration.destroy
redirect_to profile_two_factor_auth_path, status: :found, notice: _("Successfully deleted WebAuthn device.")
end
end