diff options
author | szaimen <szaimen@e.mail.de> | 2021-07-28 12:58:01 +0200 |
---|---|---|
committer | szaimen <szaimen@e.mail.de> | 2021-08-08 20:41:38 +0200 |
commit | 98102bfa780651505bcbaac0832e56c43c10389b (patch) | |
tree | 4f397656ea9c967b886c350b2f49d835fa884c5d /apps/files_trashbin | |
parent | a71294ed34ee2906ade9982258f6fcb07dd43adc (diff) | |
download | nextcloud-server-98102bfa780651505bcbaac0832e56c43c10389b.tar.gz nextcloud-server-98102bfa780651505bcbaac0832e56c43c10389b.zip |
Improve auto expiration hint
Signed-off-by: szaimen <szaimen@e.mail.de>
Co-Authored-By: Pytal <24800714+Pytal@users.noreply.github.com>
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/lib/Command/ExpireTrash.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/lib/Command/ExpireTrash.php b/apps/files_trashbin/lib/Command/ExpireTrash.php index b863f3a1fba..bcecbfceeff 100644 --- a/apps/files_trashbin/lib/Command/ExpireTrash.php +++ b/apps/files_trashbin/lib/Command/ExpireTrash.php @@ -74,7 +74,7 @@ class ExpireTrash extends Command { protected function execute(InputInterface $input, OutputInterface $output): int { $maxAge = $this->expiration->getMaxAgeAsTimestamp(); if (!$maxAge) { - $output->writeln("No expiry configured."); + $output->writeln("Auto expiration is configured - keeps files and folders in the trash bin for 30 days and automatically deletes anytime after that if space is needed (note: files may not be deleted if space is not needed)"); return 1; } |