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

10 lines
338 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2016-09-13 17:45:13 +05:30
class Profiles::U2fRegistrationsController < Profiles::ApplicationController
def destroy
u2f_registration = current_user.u2f_registrations.find(params[:id])
u2f_registration.destroy
2019-07-31 22:56:46 +05:30
redirect_to profile_two_factor_auth_path, status: 302, notice: _("Successfully deleted U2F device.")
2016-09-13 17:45:13 +05:30
end
end