mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-25 17:08:32 +00:00
14 lines
291 B
Ruby
14 lines
291 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module BackgroundMigration
|
|
class BackfillSecurityPolicies < BatchedMigrationJob
|
|
feature_category :security_policy_management
|
|
|
|
def perform; end
|
|
end
|
|
end
|
|
end
|
|
|
|
Gitlab::BackgroundMigration::BackfillSecurityPolicies.prepend_mod
|