Merge pull request #55294 from nextcloud/feat/54462-Add-MIME-types-Automated-Tagging-dropdown

Feat/54462 add mime types automated tagging dropdown
This commit is contained in:
Arthur Schiwon 2025-09-26 20:04:39 +02:00 committed by GitHub
commit 8e812ec017
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 13 additions and 3 deletions

View file

@ -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: '',
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long