aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/lib
diff options
context:
space:
mode:
authorJosh <josh.t.richards@gmail.com>2024-11-20 12:35:21 -0500
committerGitHub <noreply@github.com>2024-11-20 12:35:21 -0500
commitaa2b9b5ef24011848f2661a2bb139f11bcecfa07 (patch)
tree950a141e67ab1b8faca0f9db61fa52eb928e4a58 /apps/files/lib
parent3822db51742eb12c67b525cab80ec0699e011684 (diff)
downloadnextcloud-server-aa2b9b5ef24011848f2661a2bb139f11bcecfa07.tar.gz
nextcloud-server-aa2b9b5ef24011848f2661a2bb139f11bcecfa07.zip
feat(occ): Add help and update description for `files:cleanup`feat/occ-files-cleanup-help
Signed-off-by: Josh <josh.t.richards@gmail.com>
Diffstat (limited to 'apps/files/lib')
-rw-r--r--apps/files/lib/Command/DeleteOrphanedFiles.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/lib/Command/DeleteOrphanedFiles.php b/apps/files/lib/Command/DeleteOrphanedFiles.php
index 966351e4da0..e090c739d9a 100644
--- a/apps/files/lib/Command/DeleteOrphanedFiles.php
+++ b/apps/files/lib/Command/DeleteOrphanedFiles.php
@@ -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');
}