debian-mirror-gitlab/lib/gitlab/background_migration/populate_vulnerability_feedback_pipeline_id.rb
2021-06-08 01:23:25 +05:30

14 lines
429 B
Ruby

# 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')