gitlab-org--gitlab-foss/app/finders/fork_projects_finder.rb

7 lines
261 B
Ruby
Raw Normal View History

class ForkProjectsFinder < ProjectsFinder
def initialize(project, params: {}, current_user: nil)
project_ids = project.forks.includes(:creator).select(:id)
super(params: params, current_user: current_user, project_ids_relation: project_ids)
end
end