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

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

module Gitlab
  module BackgroundMigration
    # This class updates vulnerability feedback entities with no pipeline id assigned.
    class PopulateVulnerabilityFeedbackPipelineId
      def perform(project_ids)
      end
    end
  end
end

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