14 lines
430 B
Ruby
14 lines
430 B
Ruby
# 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')
|