gitlab-org--gitlab-foss/app/workers/background_migration_worker.rb
2017-12-05 11:59:39 +01:00

10 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