Is there something like ${security.isNotInRole}?

Hi team,

I try to prompt a notification with condition that only Administrator would not prompt.

Is there something like ${security.isNotInRole(['Administrator'])}?

You can use ${!security.isInRole(“yourrole”)}.

This is working for me. Thank you.