From cdb942a0939691f105dd1882fa4e9d65af18d702 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 17 Feb 2026 16:39:55 +0100 Subject: [PATCH] feat: app-registry adjust default mime-types (#2354) --- .../app-registry/pkg/config/defaults/defaultconfig.go | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/services/app-registry/pkg/config/defaults/defaultconfig.go b/services/app-registry/pkg/config/defaults/defaultconfig.go index f04016b473..472c91d4bc 100644 --- a/services/app-registry/pkg/config/defaults/defaultconfig.go +++ b/services/app-registry/pkg/config/defaults/defaultconfig.go @@ -46,21 +46,21 @@ func defaultMimeTypeConfig() []config.MimeTypeConfig { { MimeType: "application/vnd.oasis.opendocument.text", Extension: "odt", - Name: "OpenDocument", + Name: "Document", Description: "OpenDocument text document", AllowCreation: true, }, { MimeType: "application/vnd.oasis.opendocument.spreadsheet", Extension: "ods", - Name: "OpenSpreadsheet", + Name: "Spreadsheet", Description: "OpenDocument spreadsheet document", AllowCreation: true, }, { MimeType: "application/vnd.oasis.opendocument.presentation", Extension: "odp", - Name: "OpenPresentation", + Name: "Presentation", Description: "OpenDocument presentation document", AllowCreation: true, }, @@ -69,28 +69,24 @@ func defaultMimeTypeConfig() []config.MimeTypeConfig { Extension: "docx", Name: "Microsoft Word", Description: "Microsoft Word document", - AllowCreation: true, }, { MimeType: "application/vnd.openxmlformats-officedocument.wordprocessingml.form", Extension: "docxf", Name: "Form Document", Description: "Form Document", - AllowCreation: true, }, { MimeType: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", Extension: "xlsx", Name: "Microsoft Excel", Description: "Microsoft Excel document", - AllowCreation: true, }, { MimeType: "application/vnd.openxmlformats-officedocument.presentationml.presentation", Extension: "pptx", Name: "Microsoft PowerPoint", Description: "Microsoft PowerPoint document", - AllowCreation: true, }, { MimeType: "application/vnd.jupyter",