From be6271b54fc07ad53fcd81f2b8a115dc9f047575 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 30 May 2024 16:01:04 +0200 Subject: [PATCH] default to Collabora MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jörn Friedrich Dreyer --- changelog/unreleased/add-providerinfo-secure-view-flag.md | 1 + services/collaboration/pkg/config/defaults/defaultconfig.go | 4 ++-- services/frontend/pkg/config/defaults/defaultconfig.go | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/changelog/unreleased/add-providerinfo-secure-view-flag.md b/changelog/unreleased/add-providerinfo-secure-view-flag.md index 8d99ceebfec..1e2e4f277c4 100644 --- a/changelog/unreleased/add-providerinfo-secure-view-flag.md +++ b/changelog/unreleased/add-providerinfo-secure-view-flag.md @@ -2,4 +2,5 @@ Enhancement: add secureview flag when listing apps via http To allow clients to see which application supports secure view we add a flag to the http response when the app name matches a configured secure view app. The app can be configured by setting `FRONTEND_APP_HANDLER_SECURE_VIEW_APP` to the name of the app registered as a CS3 app provider. +https://github.com/owncloud/ocis/pull/9280 https://github.com/owncloud/ocis/pull/9277 diff --git a/services/collaboration/pkg/config/defaults/defaultconfig.go b/services/collaboration/pkg/config/defaults/defaultconfig.go index 5ec1d689736..3bb805e711b 100644 --- a/services/collaboration/pkg/config/defaults/defaultconfig.go +++ b/services/collaboration/pkg/config/defaults/defaultconfig.go @@ -21,8 +21,8 @@ func DefaultConfig() *config.Config { Name: "collaboration", }, App: config.App{ - Name: "Collabora Online", - Description: "Open office documents with Collabora Online", + Name: "Collabora", + Description: "Open office documents with Collabora", Icon: "image-edit", LockName: "com.github.owncloud.collaboration", }, diff --git a/services/frontend/pkg/config/defaults/defaultconfig.go b/services/frontend/pkg/config/defaults/defaultconfig.go index a66fb2ecb0c..848ccc0c2f9 100644 --- a/services/frontend/pkg/config/defaults/defaultconfig.go +++ b/services/frontend/pkg/config/defaults/defaultconfig.go @@ -94,7 +94,7 @@ func DefaultConfig() *config.Config { }, AppHandler: config.AppHandler{ Prefix: "app", - SecureViewApp: "Collabora Online", + SecureViewApp: "Collabora", }, Archiver: config.Archiver{ Insecure: false,