mirror of
https://github.com/nextcloud/server.git
synced 2026-06-13 18:50:47 -04:00
Merge pull request #52375 from nextcloud/fix/noid/metadata-on-fresh-setup
This commit is contained in:
commit
7880a5c25e
1 changed files with 2 additions and 0 deletions
|
|
@ -14,6 +14,7 @@ use Exception;
|
|||
use InvalidArgumentException;
|
||||
use OC\Authentication\Token\PublicKeyTokenProvider;
|
||||
use OC\Authentication\Token\TokenCleanupJob;
|
||||
use OC\Core\BackgroundJobs\GenerateMetadataJob;
|
||||
use OC\Log\Rotate;
|
||||
use OC\Preview\BackgroundCleanupJob;
|
||||
use OC\TextProcessing\RemoveOldTasksBackgroundJob;
|
||||
|
|
@ -495,6 +496,7 @@ class Setup {
|
|||
$jobList->add(BackgroundCleanupJob::class);
|
||||
$jobList->add(RemoveOldTasksBackgroundJob::class);
|
||||
$jobList->add(CleanupDeletedUsers::class);
|
||||
$jobList->add(GenerateMetadataJob::class);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue