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:
authorRémy Coutable <remy@rymai.me>2016-04-15 11:19:01 +0300
committerRémy Coutable <remy@rymai.me>2016-04-15 11:19:01 +0300
commitddec8e777f31d747d8c5c6599acf6b84afeea92d (patch)
tree6b8f5a574f3c48b0af783bd74c63eb8b53b30bcf /config
parent4e2f068c5fd7505be0674546ac977977152d3800 (diff)
parenta434ffd3b3a895bd75daed76000def23f4002f5a (diff)
Merge branch 'fix-redirect-profile-keys-new-to-profile-keys' into 'master'
Make /profile/keys/new redirects to /profile/keys for back-compat This addresses https://github.com/gitlabhq/gitlabhq/issues/10138. See merge request !3717
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 408132f4217..46a25262844 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -328,7 +328,7 @@ Rails.application.routes.draw do
end
end
resource :preferences, only: [:show, :update]
- resources :keys, except: [:new]
+ resources :keys
resources :emails, only: [:index, :create, :destroy]
resource :avatar, only: [:destroy]
resource :two_factor_auth, only: [:new, :create, :destroy] do