Restrict group scope

This commit is contained in:
Jan Provaznik 2018-07-05 13:52:02 +02:00
parent 1f320d1c50
commit 3bf7444ebd

View file

@ -33,7 +33,7 @@ module Gitlab
# To isolate migration code, we avoid usage of
# Gitlab::GroupHierarchy#base_and_descendants which already
# does this job better
ids = Namespace.where(type: 'Group', id: start_id..stop_id).pluck(:id)
ids = Namespace.where(type: 'Group', id: Label.where(type: 'GroupLabel').select('distinct group_id')).where(id: start_id..stop_id).pluck(:id)
group_ids = ids
GROUP_NESTED_LEVEL.times do