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

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

module Gitlab
  module BackgroundMigration
    # This class creates/updates those namespace statistics
    # that haven't been created nor initialized.
    # It also updates the related namespace statistics
    # This is only required in EE
    class PopulateNamespaceStatistics
      def perform(group_ids, statistics)
      end
    end
  end
end

Gitlab::BackgroundMigration::PopulateNamespaceStatistics.prepend_mod_with('Gitlab::BackgroundMigration::PopulateNamespaceStatistics')