diff options
author | provokateurin <kate@provokateurin.de> | 2025-01-07 17:02:43 +0100 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2025-01-13 15:19:19 +0100 |
commit | 31c21c779723fb6efbe6aa89b2093091c5d3e187 (patch) | |
tree | 08907a7eb60d849ec9ae72d0d894d0be8496b4c6 /config | |
parent | 26fa4da8c2fe461dd73fd92a5c593eecfc6605e5 (diff) | |
download | nextcloud-server-31c21c779723fb6efbe6aa89b2093091c5d3e187.tar.gz nextcloud-server-31c21c779723fb6efbe6aa89b2093091c5d3e187.zip |
feat(files_trashbin): Allow preventing trash to be deleted permanently
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index d5d88b71e4a..ebc8427558f 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -369,7 +369,7 @@ $CONFIG = [ /** * Enable or disable the automatic logout after session_lifetime, even if session * keepalive is enabled. This will make sure that an inactive browser will log itself out - * even if requests to the server might extend the session lifetime. Note: the logout is + * even if requests to the server might extend the session lifetime. Note: the logout is * handled on the client side. This is not a way to limit the duration of potentially * compromised sessions. * @@ -688,7 +688,7 @@ $CONFIG = [ * are generated within Nextcloud using any kind of command line tools (cron or * occ). The value should contain the full base URL: * ``https://www.example.com/nextcloud`` - * Please make sure to set the value to the URL that your users mainly use to access this Nextcloud. + * Please make sure to set the value to the URL that your users mainly use to access this Nextcloud. * Otherwise there might be problems with the URL generation via cron. * * Defaults to ``''`` (empty string) @@ -2606,4 +2606,12 @@ $CONFIG = [ * Defaults to 5. */ 'files.chunked_upload.max_parallel_count' => 5, + +/** + * Allow users to manually delete files from their trashbin. + * Automated deletions are not affected and will continue to work in cases like low remaining quota for example. + * + * Defaults to true. + */ +'files.trash.delete' => true, ]; |