Currently, I have a quick filter to show me my task that does this:
assignee = currentUser()
This works ok, but doesn't show me tasks that are assigned to someone else, but have subtasks assigned to me. Is it possible to make it show me both tasks assigned to me, and tasks that have subtasks assigned to me?
You should go to board settings -> swimlanes and choose Stories. In this case subtasks will be under the parent. I guess, the second board is a Scrum board. Subtasks are not visible in the Scrum boards in the Backlog view.
You can go to Board-> Configure->Quick filters to add. For ex: JOE in the "Name" field and "assignee = joe" in the "JQL" field. The Assignee dropdown is a very useful feature for Daily meeting.
On your board go to "configure board". There you can add a quick filter. Type in a name, and in the field JQL you can type labels !=
Create a filter for all of your subtask from the following JQL:
issuetype in subtaskIssueTypes() and assignee = currentUser()
Then, using Craftforge JQL Functions Plugin, use the following JQL to find their parents:
issue in parentIssuesFromFilter("filter name or its id")
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With