]> source.dussan.org Git - nextcloud-server.git/commitdiff
feat(occ): Add help and update description for `files:cleanup` feat/occ-files-cleanup-help 49407/head
authorJosh <josh.t.richards@gmail.com>
Wed, 20 Nov 2024 17:35:21 +0000 (12:35 -0500)
committerGitHub <noreply@github.com>
Wed, 20 Nov 2024 17:35:21 +0000 (12:35 -0500)
Signed-off-by: Josh <josh.t.richards@gmail.com>
apps/files/lib/Command/DeleteOrphanedFiles.php

index 966351e4da0628fe0af56249cc9327b868c79d8a..e090c739d9aef89c5133fe868332289d9b186136 100644 (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');
        }