I'm working on the default dashboard for our organizational and want a JQL Filter that pulls issues for a gadget that queries something like this:
resolution IS EMPTY and assignee IN (currentUsersTeam)
Is there any built in way to get a list of assignees that are in the current user's team so I can make an element that updates automatically based on who is opening the dashboard?
Thanks!
Hello @Chad Parker
When you say "Team" do you mean the teams that can be created through the Teams feature in Jira?
If so, with JQL there is no way to get a list of the members of a Team to which the "current user" belongs.
Not quite the same thing, but there is a change request about being able to use the membersOf() function with a Team as the input parameter so that you could query for
assignee in membersOf(Team)
https://jira.atlassian.com/browse/JRACLOUD-95266
Any solution that could currently be created would require custom calls to the API and could not be incorporated into a JQL statement that could then be consumed by a Dashboard.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.