Hi,
I wish to add a transition validator that allows transition for two issue types. When I try the following it fails
issue.issueType.name in ("Bug", "Enhancement")
Of course I can use == and OR but I wonder if there is a way to use the 'in' term to solve this?
@Hadas Hamerovv Yes this is possible using in term. Please try this.
issue.issuetype.name in ["Bug", "Enhancement"]
That was my first try. But maybe I used ‘ instead ‘ of “. Will try again
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.