Welcome to mirror list, hosted at ThFree Co, Russian Federation.

update_existing_subgroup_to_match_visibility_level_of_parent.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e330f7c008abe76175ecfd4750f6495052566e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # This background migration updates children of group to match visibility of a parent
    class UpdateExistingSubgroupToMatchVisibilityLevelOfParent
      def perform(parents_groups_ids, level)
        groups_ids = Gitlab::ObjectHierarchy.new(Group.where(id: parents_groups_ids))
          .base_and_descendants
          .where("visibility_level > ?", level)
          .select(:id)

        return if groups_ids.empty?

        Group
          .where(id: groups_ids)
          .update_all(visibility_level: level)
      end
    end
  end
end