页面树结构

版本比较

标识

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

 

Scenario

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

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

 

JQL query

...

  1. Approved issues

    代码块
    issue in wptApprovedBy("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. Rejected

    Declined issues

    代码块
    issue in wptRejectedBy("arguments")

    Arguments

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

...