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

populate_vulnerability_historical_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: a0c89cc46644a1b07fe345a90d73499f3d433af9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # This class creates/updates those project historical vulnerability statistics
    # that haven't been created nor initialized. It should only be executed in EE.
    class PopulateVulnerabilityHistoricalStatistics
      def perform(project_ids)
      end
    end
  end
end

Gitlab::BackgroundMigration::PopulateVulnerabilityHistoricalStatistics.prepend_if_ee('EE::Gitlab::BackgroundMigration::PopulateVulnerabilityHistoricalStatistics')