Files
gitlabhq/lib/gitlab/background_migration/resync_approval_policies.rb
2025-02-20 15:07:23 +00:00

14 lines
287 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
class ResyncApprovalPolicies < BatchedMigrationJob
feature_category :security_policy_management
def perform; end
end
end
end
Gitlab::BackgroundMigration::ResyncApprovalPolicies.prepend_mod