diff options
author | Vincent Petry <vincent@nextcloud.com> | 2021-09-15 16:57:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-15 16:57:43 +0200 |
commit | 1162dcd1bccb4dbd2f9ac40692d62c70616a18d8 (patch) | |
tree | a4f33dd13fe96edc793da21ac17f48378600ed09 | |
parent | 995aa6518357b9f371ced5ba8941dfd2a02b0d97 (diff) | |
parent | 04385c7eaaea7a77023daecaab8fc5add15176aa (diff) | |
download | nextcloud-server-1162dcd1bccb4dbd2f9ac40692d62c70616a18d8.tar.gz nextcloud-server-1162dcd1bccb4dbd2f9ac40692d62c70616a18d8.zip |
Merge pull request #28847 from nextcloud/techdebt/28118/update-config-sample-for-transfer-ownership-defaults
Add config.php option for transfer ownership
-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 9a090326ea1..845db00ac12 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1497,6 +1497,13 @@ $CONFIG = [ */ 'sharing.enable_share_mail' => true, +/** + * Set to true to always transfer incoming shares by default + * when running "occ files:transfer-ownership". + * Defaults to false, so incoming shares are not transferred if not specifically requested + * by a command line argument. + */ +'transferIncomingShares' => false, /** * All other configuration options |