debian-mirror-gitlab/lib/gitlab/background_migration/delete_approval_rules_with_vulnerability.rb
2022-10-11 01:57:18 +05:30

16 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