I know that I can do something like this:
Approver in (Jsmith,BJones,TBarton)
But I want to be able to have a filter with those userids in a variable or filter, like with the name "Team Members" where I can say something like this:
Approver in TeamMembers or Validator in TeamMembers or Assignee in TeamMembers
Just trying to not have to have to repeat all the names in multiple places
And preferably a solution that doesn't require JIRA admin privileges, just project admin (it makes life easier that way ;) ),
Any suggestions?
TIA
Hi @Cash Coyne
The dynamic option is to use Groups - but it does require Jira Admin...
assignee in membersof("team-1")
The non-Admin option is to create filters you can re-use in other queries - but it would need to be one filter per user picker field.
So for example...
assignee in (user-1, user-2, user-3)
filter = 10123 AND status = Done
You'd then need to create a filter for reporter, approver, validator, etc
Let us know if either of these work for you!
Ste
Probably you can do something as create different filter named as "Assignee Filter", "Reporter Filter" and get the filter ID of it.
Then as when you try to run another filters, then you can reference above filters in it.
Ex. project=abc and status in (done,closed) and filter=<above ID of the filter>
Alternative, You may ask your jira admin to create some groups (if multiple list of users) - and then as when you write any filter, then you can always use as assignee or reporter then followed by in jql membersof('group').
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.