diff options
author | Phil Hughes <me@iamphill.com> | 2016-03-16 19:14:31 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-03-18 15:18:06 +0000 |
commit | d847db79cb6a99d9cfb6f4c57587887942965388 (patch) | |
tree | eab21bec8ff4667ea931e438e7d66a346e62659d /config | |
parent | 645b7a0a3389dca3a709f65a52ae765f213078f2 (diff) | |
download | gitlab-ce-d847db79cb6a99d9cfb6f4c57587887942965388.tar.gz |
Fixes issue on dashboard issues
They would try to load JSON from a project even though it isn't a single project
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 2ae282f48a6..ec79522002e 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -351,6 +351,8 @@ Rails.application.routes.draw do get :issues get :merge_requests get :activity + get :labels + get :milestones scope module: :dashboard do resources :milestones, only: [:index, :show] |