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:
authorCarl Schwan <carl@carlschwan.eu>2022-04-05 00:15:00 +0300
committerCarl Schwan <carl@carlschwan.eu>2022-04-13 15:06:29 +0300
commit781784553889601d02553931aed8ff1fde95640b (patch)
tree21dd1b23c192d23be1ab1f468ff77165b7591172 /config
parentcd95fce105fe5f0e71b1bcac7685464f936b9749 (diff)
Add a metadata service to store file metadata
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 4d8dcfa5660..378d88168cd 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -2125,4 +2125,15 @@ $CONFIG = [
* Defaults to ``true``
*/
'profile.enabled' => true,
+
+/**
+ * Enable file metadata collection
+ *
+ * This is helpful for the mobile clients and will enable a few optimization in
+ * the future for the preview generation.
+ *
+ * Note that when enabled, this data will be stored in the database and might increase
+ * the database storage.
+ */
+'enable_file_metadata' => true,
];