diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-11-10 10:20:22 +0100 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-11-10 10:20:22 +0100 |
commit | 354b69dde2ba399a4269a0f544fd7a4e399d8b7e (patch) | |
tree | b44fb02b7c44cdf2fd30df907e22ad180240b873 /config | |
parent | 2ee3f8381bd498cae52cbc0fbeb656ceae5cde9e (diff) | |
parent | b7619dad52504f8fc61bfb3b42e7f8bcc42dc06d (diff) | |
download | gitlab-ce-354b69dde2ba399a4269a0f544fd7a4e399d8b7e.tar.gz |
Merge remote-tracking branch 'origin/release-notes'
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index 7d8a546a64c..2028ea938e4 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -583,7 +583,10 @@ Gitlab::Application.routes.draw do end resources :branches, only: [:index, :new, :create, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex } - resources :tags, only: [:index, :new, :create, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex } + resources :tags, only: [:index, :show, :new, :create, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex } do + resource :release, only: [:edit, :update] + end + resources :protected_branches, only: [:index, :create, :update, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex } resource :variables, only: [:show, :update] resources :triggers, only: [:index, :create, :destroy] |