debian-mirror-gitlab/lib/gitlab/background_migration/populate_namespace_statistics.rb

17 lines
514 B
Ruby
Raw Normal View History

2021-04-17 20:07:23 +05:30
# 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
2021-06-08 01:23:25 +05:30
Gitlab::BackgroundMigration::PopulateNamespaceStatistics.prepend_mod_with('Gitlab::BackgroundMigration::PopulateNamespaceStatistics')