7 lines
261 B
Ruby
7 lines
261 B
Ruby
|
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
|