BigW Consortium Gitlab

fork_projects_finder.rb 261 Bytes
Newer Older
1 2 3 4 5 6
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