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 cd06b24 + 65a2b3b commit 7880a5cCopy full SHA for 7880a5c
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;
@@ -495,6 +496,7 @@ public static function installBackgroundJobs(): void {
495
496
$jobList->add(BackgroundCleanupJob::class);
497
$jobList->add(RemoveOldTasksBackgroundJob::class);
498
$jobList->add(CleanupDeletedUsers::class);
499
+ $jobList->add(GenerateMetadataJob::class);
500
}
501
502
/**
0 commit comments