From 3914f644e6699706d77800aceec77dc36383a944 Mon Sep 17 00:00:00 2001 From: David Christofas Date: Thu, 22 Sep 2022 11:36:54 +0200 Subject: [PATCH] add tiff and bmp to the preview app config --- services/web/pkg/config/defaults/defaultconfig.go | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/services/web/pkg/config/defaults/defaultconfig.go b/services/web/pkg/config/defaults/defaultconfig.go index a0c326d95..cf08feeb1 100644 --- a/services/web/pkg/config/defaults/defaultconfig.go +++ b/services/web/pkg/config/defaults/defaultconfig.go @@ -47,7 +47,20 @@ func DefaultConfig() *config.Config { ResponseType: "code", Scope: "openid profile email", }, - Apps: []string{"files", "search", "preview", "text-editor", "pdf-viewer", "external", "user-management"}, + Apps: []string{"files", "search", "text-editor", "pdf-viewer", "external", "user-management"}, + ExternalApps: []config.ExternalApp{ + { + ID: "preview", + Path: "web-app-preview", + Config: map[string]interface{}{ + "mimeTypes": []string{ + "image/tiff", + "image/bmp", + "image/x-ms-bmp", + }, + }, + }, + }, Options: map[string]interface{}{ "previewFileMimeTypes": []string{"image/gif", "image/png", "image/jpeg", "text/plain", "image/tiff", "image/bmp", "image/x-ms-bmp"}, },