页面树结构

版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

...

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

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

 

JQL query

Parallel Workflow Transition Approval Process (PWTPAP) provides JIRA JQL query to meet above requirements. 

  1. Approved issues

    代码块
    issue in wptApprovedBypapApprovedBy("arguments")

    Arguments

    arguments
    DescriptionComments
    *Search all the users and list the issues approved by them respectively 
    currentUserSearch issues approved by current user 
    user1,user2Search issues approved by particular usersJIRA user key



  2. Declined issues

    代码块
    issue in wptRejectedBypapRejectedBy("arguments")

    Arguments

    argumentsDescriptionComments
    *Search all the users and list the issues declined by them respectively 
    currentUserSearch issues declined by current user 
    user1,user2Search issues declined by particular usersJIRA user key

...