Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2025 01:11 PM
Either of two below should work for you:
(!gs.hasRole("abc_template_read") && (gs.hasRole("abc_template_create") || gs.hasRole("abc_template_admin"))) && current.u_state != "review"
(gs.hasRole("abc_template_create") || gs.hasRole("abc_template_admin")) && current.u_state != "review"
Hope that helps!