gitlab-org--gitlab-foss/lib/gitlab/background_migration/delete_approval_rules_with_...

17 lines
500 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# This class doesn't delete approval rules
# as this feature exists only in EE
class DeleteApprovalRulesWithVulnerability < BatchedMigrationJob
def perform
end
end
end
end
# rubocop:disable Layout/LineLength
Gitlab::BackgroundMigration::DeleteApprovalRulesWithVulnerability.prepend_mod_with('Gitlab::BackgroundMigration::DeleteApprovalRulesWithVulnerability')
# rubocop:enable Layout/LineLength