mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-08-07 17:48:27 +00:00
[ACS-4448] Adding selectable options of mime types in folder rules add conditions (#3098)
* [ACS-4448] Adding selectable options of mime types in folder rules conditions. * [ACS-4448] Restructuring * PR comments * added unit tests * PR comments * unit tests * unit tests
This commit is contained in:
@@ -32,6 +32,18 @@ const simpleConditionMock: RuleSimpleCondition = {
|
||||
parameter: ''
|
||||
};
|
||||
|
||||
export const mimeTypeMock: RuleSimpleCondition = {
|
||||
field: 'mimetype',
|
||||
comparator: 'equals',
|
||||
parameter: ''
|
||||
};
|
||||
|
||||
export const categoryMock: RuleSimpleCondition = {
|
||||
field: 'category',
|
||||
comparator: 'equals',
|
||||
parameter: ''
|
||||
};
|
||||
|
||||
export const simpleConditionUnknownFieldMock: RuleSimpleCondition = {
|
||||
field: 'unknown-field',
|
||||
comparator: 'equals',
|
||||
|
Reference in New Issue
Block a user