Move operation

This commit is contained in:
dgtlmoon
2025-03-17 18:28:53 +01:00
parent 57eeb221cb
commit aaa038f082
2 changed files with 2 additions and 3 deletions
-3
View File
@@ -17,9 +17,6 @@ operator_choices = [
("!=", "Not Equals"),
("in", "Contains"),
("!in", "Does Not Contain"),
("contains_regex", "Text Matches Regex"),
("!contains_regex", "Text Does NOT Match Regex"),
# ("changed > minutes", "Changed more than X minutes ago"),
]
# Fields available in the rules
@@ -47,6 +47,8 @@ def register_operator_choices():
("ends_with", "Text Ends With"),
("length_min", "Length minimum"),
("length_max", "Length maximum"),
("contains_regex", "Text Matches Regex"),
("!contains_regex", "Text Does NOT Match Regex"),
]
@hookimpl