gitlab-org--gitlab-foss/app/workers/background_migration_worker.rb

11 lines
285 B
Ruby

class BackgroundMigrationWorker
include ApplicationWorker
# Performs the background migration.
#
# See Gitlab::BackgroundMigration.perform for more information.
def perform(class_name, arguments = [])
Gitlab::BackgroundMigration.perform(class_name, arguments)
end
end