You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/utilities/feature_flags.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -450,9 +450,9 @@ The `conditions` block is a list of conditions that contain `action`, `key`, and
450
450
}
451
451
```
452
452
453
-
The `action` configuration can have 5 different values: `EQUALS`, `STARTSWITH`, `ENDSWITH`, `IN`, `NOT_IN`.
453
+
The `action` configuration can have 5 different values: `EQUALS`, `STARTSWITH`, `ENDSWITH`, `IN`, `NOT_IN`, `RE_MATCH`, `RE_MATCH_IGNORECASE`, `RE_FULLMATCH`, `RE_FULLMATCH_IGNORECASE`, `RE_SEARCH`, `RE_SEARCH_IGNORECASE`.
454
454
455
-
The `key` and `value` will be compared to the input from the context parameter.
455
+
The `key` and `value` will be compared to the input from the context parameter. The `value` should be the regular expression pattern to use when the `action` is any of the `RE_*` actions listed above.
456
456
457
457
**For multiple conditions**, we will evaluate the list of conditions as a logical `AND`, so all conditions needs to match to return `when_match` value.
0 commit comments