diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-01-11 10:30:03 +0100 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2016-01-13 16:35:14 +0100 |
commit | 67b7ebccd134d68329fae201669924118a4d98fc (patch) | |
tree | eae8adce95c898cbb481e5c35b54b41cb506aef0 /config | |
parent | b4de427c1e0d3de5f937b3514c4dd2b8c59d7b15 (diff) | |
download | nextcloud-server-67b7ebccd134d68329fae201669924118a4d98fc.tar.gz nextcloud-server-67b7ebccd134d68329fae201669924118a4d98fc.zip |
[Share 2.0] Add share provider factory
* Add providers
* Add share manager to server container
* Use share manager from server container
* Properly get the share manager
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index b0ede5cc6de..3dc1f4818c0 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -975,6 +975,22 @@ $CONFIG = array( ), ), + +/** + * Sharing + * + * Global settings for Sharing + */ + +/** + * Replaces the default Share Provider Factory. This can be utilized if + * own or 3rdParty Share Providers be used that – for instance – uses the + * filesystem instead of the database to keep the share information. + */ +'sharing.managerFactory' => '\OC\Share20\ProviderFactory', + + + /** * All other config options */ |