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:
authorSean McGivern <sean@mcgivern.me.uk>2017-06-09 14:25:26 +0300
committerSean McGivern <sean@mcgivern.me.uk>2017-06-09 14:25:26 +0300
commit2368ffd9efb9ae6f56266ca7dbacc0772701a6a7 (patch)
tree5a9801b81808b554f20b0b028e497d9384d63d88 /config/routes
parente80df8f234a26271c77358c36662b957b23cbcaf (diff)
parentc0c82368da57caac07f25227dac74d9c119b806e (diff)
Merge branch 'dashboard-milestone-tabs-loading-async' into 'master'
Fixed dashboard milestone tabs not loading Closes #33477 See merge request !12023
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]