Remove N+1 queries

parent 58423fa8
......@@ -16,7 +16,7 @@ class Projects::ForksController < Projects::ApplicationController
@internal_forks_count = @total_forks_count - @public_forks_count - @private_forks_count
@forks = ForkProjectsFinder.new(project, params: params.merge(search: params[:filter_projects]), current_user: current_user).execute
@forks = @forks.page(params[:page])
@forks = @forks.eager_load_namespace_and_owner.includes(:creator).with_route.page(params[:page])
respond_to do |format|
format.html
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment