mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-29 12:48:15 +00:00
15 lines
356 B
Ruby
15 lines
356 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module BackgroundMigration
|
|
# This batched background migration is EE-only
|
|
class FixIncompleteExternalAuditDestinations < BatchedMigrationJob
|
|
feature_category :audit_events
|
|
|
|
def perform; end
|
|
end
|
|
end
|
|
end
|
|
|
|
Gitlab::BackgroundMigration::FixIncompleteExternalAuditDestinations.prepend_mod
|