diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-01-16 18:42:58 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2020-01-16 22:07:51 +0100 |
commit | eb4c42d3d1fda02895d35a360bceb08379f328c2 (patch) | |
tree | f4ded9fe2fee232f0b44f0ce94c8b45bf4a253ae /config | |
parent | fa966ebaf1f6584b927c75f3410af29885743c48 (diff) | |
download | nextcloud-server-eb4c42d3d1fda02895d35a360bceb08379f328c2.tar.gz nextcloud-server-eb4c42d3d1fda02895d35a360bceb08379f328c2.zip |
Make auto accepting the default and provide setting to enforce the share acceptance process
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index ba47fe9e843..0122199db30 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1339,11 +1339,16 @@ $CONFIG = array( 'sharing.minSearchStringLength' => 0, /** - * Starting with Nextcloud 18 also internal shares have to be accepted. Setting - * this setting to true forces all internal shares to be accepted directly. - * (resulting in pre 18 behavior). + * Set to true to enable that internal shares need to be accepted by the users by default. + * Users can change this for their account in their personal sharing settings */ -'sharing.interal_shares_accepted' => false, +'sharing.enable_share_accept' => false, + +/** + * Set to true to enforce that internal shares need to be accepted + */ +'sharing.force_share_accept' => false, + /** * All other configuration options |