diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-21 12:13:01 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-21 12:13:01 +0100 |
commit | 7c7467fe4244cb26a86670bc89194da7b4dc82b5 (patch) | |
tree | 4b4d203386cc9780398e654cafff73c8ab70e938 /config | |
parent | ec8022d241541b25a0e4d01857bf6a0c1ed74eca (diff) | |
parent | 899f9bd113304d77b865653768450f6013824553 (diff) | |
download | nextcloud-server-7c7467fe4244cb26a86670bc89194da7b4dc82b5.tar.gz nextcloud-server-7c7467fe4244cb26a86670bc89194da7b4dc82b5.zip |
Merge pull request #21792 from owncloud/systemtags-managerfactory
Allow custom implementation of system tag managers
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 3dc1f4818c0..3f6ae4bc3ec 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -819,6 +819,13 @@ $CONFIG = array( 'comments.managerFactory' => '\OC\Comments\ManagerFactory', /** + * Replaces the default System Tags Manager Factory. This can be utilized if an + * own or 3rdParty SystemTagsManager should be used that – for instance – uses the + * filesystem instead of the database to keep the comments. + */ +'systemtags.managerFactory' => '\OC\SystemTag\ManagerFactory', + +/** * Maintenance * * These options are for halting user activity when you are performing server |