Triggers, passing multiple values in the one condition


(Erwin Strobel) #1

Hello,

Is there a deliminator that allows for multiple attributes to be used with the one trigger condition?

For example if I wanted a schema to be applied on any newly created folder named “cards” or “Cards”

e.g. cards || cards

I have a about fifteen variations of this I need to cater for, for now I have resorted to creating 15 separate triggers.

cheers


(Bart Banda) #2

Try using the Group and Condition Keyword condition where you can use regex matches:


(Erwin Strobel) #3

Thanks Bart.Turns out our version of Matrix doesn’t like forward slashes, (?i)^card.* did the trick.