Merge pull request #6062 from skv-headless/fix_n+1_user_page
fix n+1 problem for namespaces
This commit is contained in:
commit
de68dd2601
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ class UsersController < ApplicationController
|
||||||
|
|
||||||
def show
|
def show
|
||||||
@user = User.find_by_username!(params[:username])
|
@user = User.find_by_username!(params[:username])
|
||||||
@projects = @user.authorized_projects.where('projects.id in (?)', current_user.authorized_projects.map(&:id))
|
@projects = @user.authorized_projects.where(id: current_user.authorized_projects.pluck(:id)).includes(:namespace)
|
||||||
@events = @user.recent_events.where(project_id: @projects.map(&:id)).limit(20)
|
@events = @user.recent_events.where(project_id: @projects.map(&:id)).limit(20)
|
||||||
|
|
||||||
@title = @user.name
|
@title = @user.name
|
||||||
|
|
Loading…
Reference in a new issue