Jira Quick-filter to show all task with subtasks assigned to current user

后端 未结 4 1649
北荒
北荒 2021-02-07 19:14

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

4条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-07 19:14

    In addition to @Kuf's answer, it's sometimes much simpler to write the whole thing in one query especially with Swimlanes or Quick-Filters in Greenhopper, rather than creating and saving custom filter.

    For instance, to show Un-finished Issues or Sub-tasks in one quick-filter on Greenhopper:

    status!=Closed or issue in parentIssuesFromQuery("issuetype in subtaskIssueTypes() AND status!=Closed ")
    

提交回复
热议问题