6f292eaa69
This reverts the addition of the "goldiloader" Gem and all use of it. While this Gem is very promising it's causing a variety of problems on GitLab.com due to it eager-loading too much data in places where we don't expect/can handle this. At least for the time being this means we have to go back to manually fixing N+1 query problems, but at least those should not cause a negative impact on availability.
19 lines
454 B
Ruby
19 lines
454 B
Ruby
class ForkNetwork < ActiveRecord::Base
|
|
belongs_to :root_project, class_name: 'Project'
|
|
has_many :fork_network_members
|
|
has_many :projects, through: :fork_network_members
|
|
|
|
after_create :add_root_as_member, if: :root_project
|
|
|
|
def add_root_as_member
|
|
projects << root_project
|
|
end
|
|
|
|
def find_forks_in(other_projects)
|
|
projects.where(id: other_projects)
|
|
end
|
|
|
|
def merge_requests
|
|
MergeRequest.where(target_project: projects)
|
|
end
|
|
end
|