Hello,
I have one question.
I would like to limit one transition so that only the component lead can make it. I would like to use the JMWE tool for this. Can anyone here help me?
Only the manager of one selected component should be able to make a certain transition.
You can indeed use a Scripted (Groovy) Condition with this script:
issue.get("components")?.any{
it.componentLead == currentUser
}
Thank you very much. Great solution.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jurica Petricevic ,
I do not have JMWE directly at my Jira, but i have JSU.
For me it works with:
JQL Condition (JSU)
JQL Expression: component in componentsLeadByUser ()
With JMWE you can create a condition with Groovy Script and maybe you can use this JQL in a Groovy script.
Anyone additions?
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.