debian-mirror-gitlab/lib/gitlab/background_migration/backfill_namespace_ldap_settings.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
464 B
Ruby
Raw Normal View History

2023-05-27 22:25:52 +05:30
# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# Back-fill container_registry_size for project_statistics
class BackfillNamespaceLdapSettings < Gitlab::BackgroundMigration::BatchedMigrationJob
operation_name :backfill_namespace_ldap_settings
feature_category :system_access
def perform
# no-op in FOSS
end
end
end
end
Gitlab::BackgroundMigration::BackfillNamespaceLdapSettings.prepend_mod