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:
authorPhil Hughes <me@iamphill.com>2017-01-25 16:07:44 +0300
committerFatih Acet <acetfatih@gmail.com>2017-02-03 17:02:43 +0300
commit38d84c1396b5264ba171df109c873469d371be73 (patch)
treebc7bc1d6b28636ad0d2d8f193900adc951b65db0 /config
parent97fbb3d1ff1d22aa8597ff0bad0520634d9e351e (diff)
Changed where data gets loaded
Changed what is hidden when data is loading
Diffstat (limited to 'config')
-rw-r--r--config/routes/project.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/routes/project.rb b/config/routes/project.rb
index 5c33bb4a6ca..afd895a5a1e 100644
--- a/config/routes/project.rb
+++ b/config/routes/project.rb
@@ -267,13 +267,14 @@ constraints(ProjectUrlConstrainer.new) do
resources :boards, only: [:index, :show] do
get :backlog, on: :member
-
+
scope module: :boards do
resources :issues, only: [:update]
resources :lists, only: [:index, :create, :update, :destroy] do
collection do
post :generate
+ post :multiple
end
resources :issues, only: [:index, :create]