mirror of
https://github.com/nextcloud/server.git
synced 2026-06-29 12:24:50 +02:00
1ab09ec753
The diff can be checked using: git diff --ignore-all-space --ignore-blank-lines To see only the changes not related to blank lines. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
36 lines
792 B
PHP
36 lines
792 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OC\Repair\NC20;
|
|
|
|
use OCP\IConfig;
|
|
use OCP\Migration\IOutput;
|
|
use OCP\Migration\IRepairStep;
|
|
|
|
class ShippedDashboardEnable implements IRepairStep {
|
|
public function __construct(
|
|
private readonly IConfig $config,
|
|
) {
|
|
}
|
|
|
|
#[\Override]
|
|
public function getName(): string {
|
|
return 'Remove old dashboard app config data';
|
|
}
|
|
|
|
#[\Override]
|
|
public function run(IOutput $output): void {
|
|
$version = $this->config->getAppValue('dashboard', 'version', '7.0.0');
|
|
if (version_compare($version, '7.0.0', '<')) {
|
|
$this->config->deleteAppValues('dashboard');
|
|
$output->info('Removed old dashboard app config');
|
|
}
|
|
}
|
|
}
|