Preload project route to avoid N+1 query

This commit is contained in:
Stan Hu 2017-11-19 16:46:40 -08:00 committed by Francisco Lopez
parent 02cd1702b2
commit 0dfb880101
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ module API
get ":id/projects" do
group = find_group!(params[:id])
projects = GroupProjectsFinder.new(group: group, current_user: current_user, params: project_finder_params).execute
projects = projects.preload(:fork_network, :forked_project_link, :project_feature, :project_group_links, :tags, :taggings, :group, :namespace)
projects = projects.preload(:fork_network, :forked_project_link, :project_feature, :project_group_links, :tags, :taggings, :group, :namespace, :route)
projects = reorder_projects(projects)
entity = params[:simple] ? Entities::BasicProjectDetails : Entities::Project
present paginate(projects), with: entity, current_user: current_user