From 243727fea59305bad2614e2cb12fafff3c583872 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Wed, 27 Oct 2021 15:11:12 +0200 Subject: [PATCH] Announce resharing as false in capabilities --- changelog/unreleased/storage-disable-resharing.md | 5 +++++ storage/pkg/command/frontend.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 changelog/unreleased/storage-disable-resharing.md diff --git a/changelog/unreleased/storage-disable-resharing.md b/changelog/unreleased/storage-disable-resharing.md new file mode 100644 index 0000000000..70c7c72357 --- /dev/null +++ b/changelog/unreleased/storage-disable-resharing.md @@ -0,0 +1,5 @@ +Bugfix: Don't announce resharing via capabilities + +oCIS / Reva is not capable of resharing, yet. We've set the resharing capability to false, so that clients have a chance to react accordingly. + +https://github.com/owncloud/ocis/pull/2690 diff --git a/storage/pkg/command/frontend.go b/storage/pkg/command/frontend.go index 5c3e4fe456..43fb59a6f4 100644 --- a/storage/pkg/command/frontend.go +++ b/storage/pkg/command/frontend.go @@ -244,7 +244,7 @@ func frontendConfigFromStruct(c *cli.Context, cfg *config.Config, filesCfg map[s "dav": map[string]interface{}{}, "files_sharing": map[string]interface{}{ "api_enabled": true, - "resharing": true, + "resharing": false, "group_sharing": true, "auto_accept_share": true, "share_with_group_members_only": true,