nextcloud/lib/private/Repair/AddCleanupUpdaterBackupsJob.php
Carl Schwan fb3f9fe2de
refactor: Update repairs jobs
Signed-off-by: Carl Schwan <carl.schwan@nextcloud.com>
2026-02-06 13:54:24 +01:00

27 lines
678 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OC\Repair;
use OC\Core\BackgroundJobs\BackgroundCleanupUpdaterBackupsJob;
use OCP\BackgroundJob\IJobList;
use OCP\Migration\IOutput;
use OCP\Migration\IRepairStep;
class AddCleanupUpdaterBackupsJob implements IRepairStep {
public function __construct(
protected readonly IJobList $jobList,
) {
}
public function getName(): string {
return 'Queue a one-time job to cleanup old backups of the updater';
}
public function run(IOutput $output): void {
$this->jobList->add(BackgroundCleanupUpdaterBackupsJob::class);
}
}