Merge pull request #55863 from nextcloud/fix/noid/execute-lexicon-repair-step

fix(lexicon): execute repair step
pull/55883/head
Andy Scherzinger 2025-10-21 11:53:32 +07:00 committed by GitHub
commit 4696524c9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

@ -20,6 +20,7 @@ use OC\Repair\CleanUpAbandonedApps;
use OC\Repair\ClearFrontendCaches;
use OC\Repair\ClearGeneratedAvatarCache;
use OC\Repair\Collation;
use OC\Repair\ConfigKeyMigration;
use OC\Repair\Events\RepairAdvanceEvent;
use OC\Repair\Events\RepairErrorEvent;
use OC\Repair\Events\RepairFinishEvent;
@ -201,6 +202,7 @@ class Repair implements IOutput {
\OCP\Server::get(AddCleanupDeletedUsersBackgroundJob::class),
\OCP\Server::get(SanitizeAccountProperties::class),
\OCP\Server::get(AddMovePreviewJob::class),
\OCP\Server::get(ConfigKeyMigration::class),
];
}