diff options
author | Phil Hughes <me@iamphill.com> | 2017-01-25 13:07:44 +0000 |
---|---|---|
committer | Fatih Acet <acetfatih@gmail.com> | 2017-02-03 17:02:43 +0300 |
commit | 38d84c1396b5264ba171df109c873469d371be73 (patch) | |
tree | bc7bc1d6b28636ad0d2d8f193900adc951b65db0 /config/routes | |
parent | 97fbb3d1ff1d22aa8597ff0bad0520634d9e351e (diff) | |
download | gitlab-ce-38d84c1396b5264ba171df109c873469d371be73.tar.gz |
Changed where data gets loaded
Changed what is hidden when data is loading
Diffstat (limited to 'config/routes')
-rw-r--r-- | config/routes/project.rb | 3 |
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] |