I have a shared resource team that works on issues from multiple projects. Currently, the board query is:
project = COM OR assignee in membersOf(commissions) OR issuetype = Commissions ORDER BY Rank ASC
This works fine except the subtasks will not display on the board unless it is assigned to a member of the team. I think I need to add something like ..."or Parent IssueType (assignee in membersOf(commissions) OR issuetype = Commissions)
---
Anyone have any suggestions?
Hello Damon,
In order to display the Sub-tasks of a specific issue-type in a JQL filter, the best option is to create a new sub-task issue type to commissions.
Adding a new Commission sub-task, you could transfer the sub-tasks of your project to the new Sub-issuetype. Supposing the name of the new issuetype is Sub-commissions, you would write the following filter:
project = COM OR assignee in membersOf(commissions) OR issuetype in (Commissions, Sub-commissions) ORDER BY Rank ASC
Another option would be to add a custom field that could only be configured for the sub-tasks linked to commissions:
project = COM OR assignee in membersOf(commissions) OR issuetype = Commissions and customfield = value ORDER BY Rank ASC
Thank you Petterson. Your answer isn't ideal, but it is probably the best thing I can do.
I think I will take a different approach given our business. My plan is to kind of reverse the current process:
Thank you for your great response.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm glad to know you were able to find a different approach for your business case, Damon.
Have a nice week and please don't hesitate to contact the community again everytime you need.
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.