summaryrefslogtreecommitdiffstats
path: root/apps/workflowengine/src/components/Checks/file.js
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-09-09 16:20:33 +0200
committerJulius Härtl <jus@bitgrid.net>2019-09-10 09:01:26 +0200
commit335d7cfba3f767efe709eb27676c34c7086a2d68 (patch)
tree512183af76c0e375c35ce134d5950a94d6c2200c /apps/workflowengine/src/components/Checks/file.js
parente17a6665177f6c62ce5a067d0738f11f33021a8f (diff)
downloadnextcloud-server-335d7cfba3f767efe709eb27676c34c7086a2d68.tar.gz
nextcloud-server-335d7cfba3f767efe709eb27676c34c7086a2d68.zip
Add tag selector
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/workflowengine/src/components/Checks/file.js')
-rw-r--r--apps/workflowengine/src/components/Checks/file.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/workflowengine/src/components/Checks/file.js b/apps/workflowengine/src/components/Checks/file.js
index 816aaa73a65..431a3f93580 100644
--- a/apps/workflowengine/src/components/Checks/file.js
+++ b/apps/workflowengine/src/components/Checks/file.js
@@ -22,6 +22,7 @@
import FileMimeType from './FileMimeType'
import { stringValidator, validateIPv4, validateIPv6 } from './../../helpers/validators'
+import FileSystemTag from './FileSystemTag';
const FileChecks = [
{
class: 'OCA\\WorkflowEngine\\Check\\FileName',
@@ -95,7 +96,8 @@ const FileChecks = [
operators: [
{ operator: 'is', name: t('workflowengine', 'is tagged with') },
{ operator: '!is', name: t('workflowengine', 'is not tagged with') }
- ]
+ ],
+ component: FileSystemTag
}
]