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
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-06-08 19:43:05 +0300
committerPhil Hughes <me@iamphill.com>2017-06-09 11:57:42 +0300
commitc0c82368da57caac07f25227dac74d9c119b806e (patch)
tree37e83b3b2f40553a1be1aaf3d1e13ddaa39135d3 /config/routes
parentfd072e2221147f52edf74d4dcedb2ffa3799ab2f (diff)
Fixed dashboard milestone tabs not loading
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]