diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2015-11-23 23:53:55 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2015-12-09 14:34:23 +0100 |
commit | 2ce2de0ae523e91b90c39a91fdcc975f06a7674a (patch) | |
tree | b62b352eefb690e9a1b5e0c863aa13c0d72056bd /config | |
parent | 04f4565fcda4c7482c25681863237d05e850562a (diff) | |
download | nextcloud-server-2ce2de0ae523e91b90c39a91fdcc975f06a7674a.tar.gz nextcloud-server-2ce2de0ae523e91b90c39a91fdcc975f06a7674a.zip |
add icommentsmanger and icomment implementation
register CommentsManager service, allow override, document in config.sample.php
don't insert autoincrement ids in tests, because of dislikes from oracle and pgsql
specify timezone in null date
only accepts strings for ID parameter that can be converted to int
replace forgotten hardcoded IDs in tests
react on deleted users
react on file deletion
Postgresql compatibility
lastInsertId needs *PREFIX* with the table name
do not listen for file deletion, because it is not reliable (trashbin, external storages)
add runtime cache for comments
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index c3abe3a2b87..9b10792944f 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -815,6 +815,19 @@ $CONFIG = array( 'enforce_home_folder_naming_rule' => true, /** + * Comments + * + * Global settings for the Comments infrastructure + */ + +/** + * Replaces the default Comments Manager Factory. This can be utilized if an + * own or 3rdParty CommentsManager should be used that – for instance – uses the + * filesystem instead of the database to keep the comments. + */ +'comments.managerFactory' => '\OC\Comments\ManagerFactory', + +/** * Maintenance * * These options are for halting user activity when you are performing server |