Merge pull request #49407 from nextcloud/feat/occ-files-cleanup-help

feat(files): Add help to / update description of `files:cleanup`
This commit is contained in:
Daniel 2024-11-21 11:00:31 +01:00 committed by GitHub
commit 1f6d0f0eb6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -29,7 +29,8 @@ class DeleteOrphanedFiles extends Command {
protected function configure(): void {
$this
->setName('files:cleanup')
->setDescription('cleanup filecache')
->setDescription('Clean up orphaned filecache and mount entries')
->setHelp('Deletes orphaned filecache and mount entries (those without an existing storage).')
->addOption('skip-filecache-extended', null, InputOption::VALUE_NONE, 'don\'t remove orphaned entries from filecache_extended');
}