We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2725c77 + df14893 commit b7fd8c1Copy full SHA for b7fd8c1
lib/private/Setup.php
@@ -14,6 +14,7 @@
14
use InvalidArgumentException;
15
use OC\Authentication\Token\PublicKeyTokenProvider;
16
use OC\Authentication\Token\TokenCleanupJob;
17
+use OC\Core\BackgroundJobs\GenerateMetadataJob;
18
use OC\Log\Rotate;
19
use OC\Preview\BackgroundCleanupJob;
20
use OC\TextProcessing\RemoveOldTasksBackgroundJob;
@@ -417,6 +418,7 @@ public static function installBackgroundJobs(): void {
417
418
$jobList->add(BackgroundCleanupJob::class);
419
$jobList->add(RemoveOldTasksBackgroundJob::class);
420
$jobList->add(CleanupDeletedUsers::class);
421
+ $jobList->add(GenerateMetadataJob::class);
422
}
423
424
/**
0 commit comments