diff options
author | Alessio Caiazza <acaiazza@gitlab.com> | 2018-12-17 10:53:17 +0100 |
---|---|---|
committer | Alessio Caiazza <acaiazza@gitlab.com> | 2018-12-18 11:07:31 +0100 |
commit | 867a1acc9046ed15afffe8ebc04e93a3628de1d2 (patch) | |
tree | c06712017480cc65c018a48479e04c5fdca19d23 /config | |
parent | 9004e18e6e0bca3deb7115b16e345f9755c012f3 (diff) | |
download | gitlab-ce-867a1acc9046ed15afffe8ebc04e93a3628de1d2.tar.gz |
Move Projects::ReleasesController under Tags
Rename Projects::ReleasesController to
Projects::Tags::ReleasesController
Diffstat (limited to 'config')
-rw-r--r-- | config/routes/repository.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes/repository.rb b/config/routes/repository.rb index d439cb9acbd..96975759709 100644 --- a/config/routes/repository.rb +++ b/config/routes/repository.rb @@ -55,7 +55,7 @@ scope format: false do resources :branches, only: [:index, :new, :create, :destroy] delete :merged_branches, controller: 'branches', action: :destroy_all_merged resources :tags, only: [:index, :show, :new, :create, :destroy] do - resource :release, only: [:edit, :update] + resource :release, controller: 'tags/releases', only: [:edit, :update] end resources :protected_branches, only: [:index, :show, :create, :update, :destroy] |