summaryrefslogtreecommitdiff
path: root/config/routes
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-06-08 17:43:05 +0100
committerPhil Hughes <me@iamphill.com>2017-06-09 09:57:42 +0100
commitc0c82368da57caac07f25227dac74d9c119b806e (patch)
tree37e83b3b2f40553a1be1aaf3d1e13ddaa39135d3 /config/routes
parentfd072e2221147f52edf74d4dcedb2ffa3799ab2f (diff)
downloadgitlab-ce-c0c82368da57caac07f25227dac74d9c119b806e.tar.gz
Fixed dashboard milestone tabs not loadingdashboard-milestone-tabs-loading-async
Closes #33477
Diffstat (limited to 'config/routes')
-rw-r--r--config/routes/dashboard.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/config/routes/dashboard.rb b/config/routes/dashboard.rb
index 8e380a0b0ac..d2437285cdf 100644
--- a/config/routes/dashboard.rb
+++ b/config/routes/dashboard.rb
@@ -4,7 +4,13 @@ resource :dashboard, controller: 'dashboard', only: [] do
get :activity
scope module: :dashboard do
- resources :milestones, only: [:index, :show]
+ resources :milestones, only: [:index, :show] do
+ member do
+ get :merge_requests
+ get :participants
+ get :labels
+ end
+ end
resources :labels, only: [:index]
resources :groups, only: [:index]