From e192780dd99869f60be8bf2f4631cdfa80ef234d Mon Sep 17 00:00:00 2001 From: JinHakChoi Date: Sun, 14 Sep 2025 18:14:57 +0900 Subject: [PATCH] feat(workflowengine): Add audio and video MIME types to Automated Tagging dropdown menu - Add Dropdown Menu for common audio MIME types (audio/mpeg, audio/wav, audio/ogg, etc.) - Add Dropdown Menu for common video MIME types (video/mp4, video/webm, etc.) - Improves user experience when creating automated tagging rules for media files Fixes #54462 Signed-off-by: JinHakChoi --- .../src/components/Checks/FileMimeType.vue | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/apps/workflowengine/src/components/Checks/FileMimeType.vue b/apps/workflowengine/src/components/Checks/FileMimeType.vue index 6817b128e27..7de29cec243 100644 --- a/apps/workflowengine/src/components/Checks/FileMimeType.vue +++ b/apps/workflowengine/src/components/Checks/FileMimeType.vue @@ -60,6 +60,11 @@ export default { data() { return { predefinedTypes: [ + { + iconUrl: imagePath('core', 'filetypes/audio'), + label: t('workflowengine', 'Audio'), + id: '/audio\\/.*/', + }, { icon: 'icon-folder', label: t('workflowengine', 'Folder'), @@ -80,6 +85,11 @@ export default { label: t('workflowengine', 'PDF documents'), id: 'application/pdf', }, + { + iconUrl: imagePath('core', 'filetypes/video'), + label: t('workflowengine', 'Video'), + id: '/video\\/.*/', + }, ], newValue: '', }