From 29b5c976fadc7c7753e2178e82f2fcb2225e6217 Mon Sep 17 00:00:00 2001 From: Michael Barz Date: Thu, 15 Sep 2022 14:58:09 +0200 Subject: [PATCH] enable private links --- changelog/unreleased/enable-privatelinks-capability.md | 5 +++++ services/frontend/pkg/revaconfig/config.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 changelog/unreleased/enable-privatelinks-capability.md diff --git a/changelog/unreleased/enable-privatelinks-capability.md b/changelog/unreleased/enable-privatelinks-capability.md new file mode 100644 index 00000000000..8d1c6fa5c40 --- /dev/null +++ b/changelog/unreleased/enable-privatelinks-capability.md @@ -0,0 +1,5 @@ +Change: Enable privatelinks by default + +Enable privatelinks by default in the capabilities. + +https://github.com/owncloud/ocis/pull/4599/ diff --git a/services/frontend/pkg/revaconfig/config.go b/services/frontend/pkg/revaconfig/config.go index 1439d32029e..9a40e6a8f70 100644 --- a/services/frontend/pkg/revaconfig/config.go +++ b/services/frontend/pkg/revaconfig/config.go @@ -42,7 +42,7 @@ func FrontendConfigFromStruct(cfg *config.Config) (map[string]interface{}, error } filesCfg := map[string]interface{}{ - "private_links": false, + "private_links": true, "bigfilechunking": false, "blacklisted_files": []string{}, "undelete": true,