页面树结构

 

Scenario

  • In certain scenarios, user may want to find a list of all the requests he or she has either approved or rejected. 

  • JIRA administrator may need to track all the requests approved or rejected by a particular user. 

 

JQL query

Parallel Workflow Transition (PWT) provides JIRA JQL query to meet above requirements. 

  1. Approved issues

    issue in wptApprovedBy("arguments")

    Arguments

    arguments
    说明备注
    *Search all the users and list the issues approved by them respectively 
    currentUserSearch issues approved by current user 
    uer1,user2Search issues approved by particular usersJIRA user key



  2. Rejected issues

    issue in wptRejectedBy("arguments")

    Arguments

    arguments说明备注
    *Search all the users and list the issues rejected by them respectively 
    currentUserSearch issues rejected by current user 
    用户1,用户2Search issues rejected by particular usersJIRA user key

 

  • 无标签