summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorJan Provaznik <jprovaznik@gitlab.com>2019-07-11 17:13:29 +0000
committerJan Provaznik <jprovaznik@gitlab.com>2019-07-11 17:13:29 +0000
commit86b07736488b61f2c5ed37369cad615320289a43 (patch)
tree68c796686fea3ab9f6ad598ec3c57aace8f06024 /config
parent06b8fe5607f2419f0171da8d4c3149b006ee9736 (diff)
parent69e02904fe1a5442cd429bfc307bb55eefedd5d6 (diff)
downloadgitlab-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.rb6
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]