Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorBjörn Schießle <bjoern@schiessle.org>2017-02-22 18:30:21 +0300
committerGitHub <noreply@github.com>2017-02-22 18:30:21 +0300
commit621f920d682c78b12b8a57abcf0d4af09a11757b (patch)
treed21a39b2edec56b32088755eb41ce17305ab353f /config
parenta2e16fd5bada32559fca9450b4b635d7c0708668 (diff)
parent11e5a3dcf4767149a3f7e14deb8e684bb6500276 (diff)
Merge pull request #3567 from nextcloud/autocomplete-settings
some sharing settings
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php49
1 files changed, 30 insertions, 19 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 2a1387cecd0..3ad8ffc832f 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -188,7 +188,7 @@ $CONFIG = array(
/**
* Lifetime of the remember login cookie, which is set when the user clicks
- * the ``remember`` checkbox on the login screen.
+ * the ``remember`` checkbox on the login screen.
*
* Defaults to ``60*60*24*15`` seconds (15 days)
*/
@@ -497,20 +497,20 @@ $CONFIG = array(
*
* Available values:
*
- * * ``auto``
- * default setting. keeps files and folders in the trash bin for 30 days
- * and automatically deletes anytime after that if space is needed (note:
+ * * ``auto``
+ * default setting. 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).
- * * ``D, auto``
- * keeps files and folders in the trash bin for D+ days, delete anytime if
+ * * ``D, auto``
+ * keeps files and folders in the trash bin for D+ days, delete anytime if
* space needed (note: files may not be deleted if space is not needed)
- * * ``auto, D``
- * delete all files in the trash bin that are older than D days
+ * * ``auto, D``
+ * delete all files in the trash bin that are older than D days
* automatically, delete other files anytime if space needed
- * * ``D1, D2``
- * keep files and folders in the trash bin for at least D1 days and
+ * * ``D1, D2``
+ * keep files and folders in the trash bin for at least D1 days and
* delete when exceeds D2 days
- * * ``disabled``
+ * * ``disabled``
* trash bin auto clean disabled, files and folders will be kept forever
*
* Defaults to ``auto``
@@ -539,19 +539,19 @@ $CONFIG = array(
*
* Available values:
*
- * * ``auto``
- * default setting. Automatically expire versions according to expire
+ * * ``auto``
+ * default setting. Automatically expire versions according to expire
* rules. Please refer to :doc:`../configuration_files/file_versioning` for
* more information.
- * * ``D, auto``
- * keep versions at least for D days, apply expire rules to all versions
+ * * ``D, auto``
+ * keep versions at least for D days, apply expire rules to all versions
* that are older than D days
- * * ``auto, D``
- * delete all versions that are older than D days automatically, delete
+ * * ``auto, D``
+ * delete all versions that are older than D days automatically, delete
* other versions according to expire rules
- * * ``D1, D2``
+ * * ``D1, D2``
* keep versions for at least D1 days and delete when exceeds D2 days
- * * ``disabled``
+ * * ``disabled``
* versions auto clean disabled, versions will be kept forever
*
* Defaults to ``auto``
@@ -1185,6 +1185,17 @@ $CONFIG = array(
*/
'sharing.managerFactory' => '\OC\Share20\ProviderFactory',
+/**
+ * Define max number of results returned by the user search for auto-completion
+ * Default is unlimited (value set to 0).
+ */
+'sharing.maxAutocompleteResults' => 0,
+
+/**
+ * Define the minimum length of the search string before we start auto-completion
+ * Default is no limit (value set to 0)
+ */
+'sharing.minSearchStringLength' => 0,
/**