mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-29 12:48:15 +00:00
16 lines
365 B
Ruby
16 lines
365 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module BackgroundMigration
|
|
class CreateComplianceStandardsAdherence < BatchedMigrationJob
|
|
feature_category :compliance_management
|
|
|
|
def perform
|
|
# no-op. The logic is defined in EE module.
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
::Gitlab::BackgroundMigration::CreateComplianceStandardsAdherence.prepend_mod
|