mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
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:
commit
8e812ec017
3 changed files with 13 additions and 3 deletions
|
|
@ -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: '',
|
||||
}
|
||||
|
|
|
|||
4
dist/workflowengine-workflowengine.js
vendored
4
dist/workflowengine-workflowengine.js
vendored
File diff suppressed because one or more lines are too long
2
dist/workflowengine-workflowengine.js.map
vendored
2
dist/workflowengine-workflowengine.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue