Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2016-08-18 21:37:56 +0300
committerRuben Davila <rdavila84@gmail.com>2016-08-19 02:45:39 +0300
commit117e2842e5944b445fbdaba62ef0945f7863240b (patch)
tree8b6d6bb57cc2155f81b2c126b033949222b51e03 /config
parentb07cd8ec641a933b819300e005e7124dd1d11c81 (diff)
Merge branch '17334-u2f-device-identifiers' into 'master'
Allow naming (and deleting) U2F devices. ## What does this MR do? - Allow giving each U2F device a name (at the time of registration). - Allow deleting individual U2F devices. - Display a list of registered U2F devices. ## What are the relevant issue numbers? - Closes #17334 - Closes #17335 See merge request !5833
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index a62c460f055..867f3dac50b 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -375,6 +375,8 @@ Rails.application.routes.draw do
patch :skip
end
end
+
+ resources :u2f_registrations, only: [:destroy]
end
end