diff options
author | Jan Provaznik <jprovaznik@gitlab.com> | 2019-07-11 17:13:29 +0000 |
---|---|---|
committer | Jan Provaznik <jprovaznik@gitlab.com> | 2019-07-11 17:13:29 +0000 |
commit | 86b07736488b61f2c5ed37369cad615320289a43 (patch) | |
tree | 68c796686fea3ab9f6ad598ec3c57aace8f06024 /config | |
parent | 06b8fe5607f2419f0171da8d4c3149b006ee9736 (diff) | |
parent | 69e02904fe1a5442cd429bfc307bb55eefedd5d6 (diff) | |
download | gitlab-ce-86b07736488b61f2c5ed37369cad615320289a43.tar.gz |
Merge branch '35757-move-issues-in-boards-pderichs' into 'master'
Add endpoint to move issues in boards
See merge request gitlab-org/gitlab-ce!30216
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index a42fc037227..ae14b421028 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -82,7 +82,11 @@ Rails.application.routes.draw do resources :issues, only: [:index, :create, :update] end - resources :issues, module: :boards, only: [:index, :update] + resources :issues, module: :boards, only: [:index, :update] do + collection do + put :bulk_move, format: :json + end + end Gitlab.ee do resources :users, module: :boards, only: [:index] |