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

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

module Gitlab
  module BackgroundMigration
    # rubocop: disable Style/Documentation
    class UpdateVulnerabilityOccurrencesLocation
      def perform(start_id, stop_id)
      end
    end
    # rubocop: enable Style/Documentation
  end
end

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