The assignee should be the only person closing out their tickets. Some admins are closing out my tickets when the work is not complete. How do I prevent this on a board I own?
Hi @Mary Zuranski ,
Closing conditions is at the issue level. Board is just a placeholder of the issues that the board filter returns. Add a workflow condition on Close transition - Only assignee condition. In that case, others cannot close it. If you need this restriction only for issues that are assigned to you, you may need to have small if clause workflow condition, may be a custom script using Script runner. JWME plugin can also be handy. I am not a groovy guy, but this may work with JWME
if (issue.getAsString("assignee") == "Joe")
{if (issue.get("reporter")?.name == "Joe")
return true}
else
return false
This can be enforced by including a condition on the 'close' transition in the relevant workflow. For more information, see
regards,
Marco
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.