diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-07-26 15:15:47 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-07-26 15:15:47 +0200 |
commit | 0a9bb8ba73f80fd63592d994c837345698131e9b (patch) | |
tree | d8012cca55cd56d16b03a0ab122ba73503d62f03 /apps | |
parent | efd8ad6696ebc8ff138ad71df4c0c0b788f19b6f (diff) | |
download | nextcloud-server-0a9bb8ba73f80fd63592d994c837345698131e9b.tar.gz nextcloud-server-0a9bb8ba73f80fd63592d994c837345698131e9b.zip |
reduce time for auto expire to 30 days by default
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_trashbin/lib/trash.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index d09c4d5f7b1..ba940084a87 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -25,7 +25,7 @@ namespace OCA\Files_Trashbin; class Trashbin { // how long do we keep files in the trash bin if no other value is defined in the config file (unit: days) - const DEFAULT_RETENTION_OBLIGATION = 180; + const DEFAULT_RETENTION_OBLIGATION = 30; // unit: percentage; 50% of available disk space/quota const DEFAULTMAXSIZE = 50; |