18 lines
554 B
Ruby
18 lines
554 B
Ruby
# frozen_string_literal: true
|
|
|
|
module RendersProjectsList
|
|
include RendersMemberAccess
|
|
|
|
def prepare_projects_for_rendering(projects)
|
|
preload_max_member_access_for_collection(Project, projects)
|
|
current_user.preloaded_member_roles_for_projects(projects) if current_user
|
|
|
|
# Call the count methods on every project, so the BatchLoader would load them all at
|
|
# once when the entities are rendered
|
|
projects.each(&:forks_count)
|
|
projects.each(&:open_issues_count)
|
|
projects.each(&:open_merge_requests_count)
|
|
|
|
projects
|
|
end
|
|
end
|