BUGFIX add MATCH_NONE to tag matching options

This commit is contained in:
konrad.lys@eu.equinix.com
2023-05-29 17:30:28 +02:00
parent f46ae73f49
commit 4f52778b23
5 changed files with 15 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ import 'package:json_annotation/json_annotation.dart';
@JsonEnum(valueField: 'value')
enum MatchingAlgorithm {
none(0, "None: Disable matching"),
anyWord(1, "Any: Match one of the following words"),
allWords(2, "All: Match all of the following words"),
exactMatch(3, "Exact: Match the following string"),