diff options
author | Vincent Petry <vincent@nextcloud.com> | 2021-09-15 14:37:10 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2021-09-15 15:01:43 +0000 |
commit | 3bd119452645bd0ee792a67439861f5f63229e50 (patch) | |
tree | e85574217240a556ae685737b50fed08916a3c1e /config/config.sample.php | |
parent | 4d5ee24eed68911342751913690b7ec8958801e3 (diff) | |
download | nextcloud-server-3bd119452645bd0ee792a67439861f5f63229e50.tar.gz nextcloud-server-3bd119452645bd0ee792a67439861f5f63229e50.zip |
Add config.php option for transfer ownership
Add option to specify whether to transfer incoming shares by default.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'config/config.sample.php')
-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 e15afe48dc8..6fea4659c2b 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1490,6 +1490,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 |