summaryrefslogtreecommitdiff
path: root/app/controllers/dashboard
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2017-03-16 12:09:52 +0000
committerYorick Peterse <yorickpeterse@gmail.com>2017-03-16 12:09:52 +0000
commitabb5f765c1e1affe0e132c86811e356e4a7008c9 (patch)
tree815fbaa397217d82d82cae996498617494aee8e2 /app/controllers/dashboard
parent8c5a3ffe9d29767eaf2e75038056efe29579b7bf (diff)
parent7d5b8993f47f02488cb37811719193d4ecb45e0a (diff)
downloadgitlab-ce-abb5f765c1e1affe0e132c86811e356e4a7008c9.tar.gz
Merge branch '27376-cache-default-branch-pipeline-on-project' into 'master'
Speed up several project lists See merge request !9903
Diffstat (limited to 'app/controllers/dashboard')
-rw-r--r--app/controllers/dashboard/projects_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/dashboard/projects_controller.rb b/app/controllers/dashboard/projects_controller.rb
index 325ae565537..be00d765f73 100644
--- a/app/controllers/dashboard/projects_controller.rb
+++ b/app/controllers/dashboard/projects_controller.rb
@@ -42,7 +42,7 @@ class Dashboard::ProjectsController < Dashboard::ApplicationController
private
def load_projects(base_scope)
- projects = base_scope.sorted_by_activity.includes(:namespace)
+ projects = base_scope.sorted_by_activity.includes(:route, namespace: :route)
filter_projects(projects)
end