diff options
Diffstat (limited to 'apps/workflowengine/src/components/Checks/file.js')
-rw-r--r-- | apps/workflowengine/src/components/Checks/file.js | 4 |
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 } ] |