Looking to find a way to find all issues where the currentUser() belongs to a Jira group selected in a group-picker field.
For example: Issues where Assignment Group (group picker field) is set to Zoom-Admins and I belong to the group Zoom-Admins.
In DC we're doing this with the Go! JQL plug-in, but it seems the same functionality doesn't exist in the Cloud due to some API restrictions where we have to use the Extended Search. However, this is tied to our IT Service Desk using a JSM project and to utilize the Queues we are limited to JQL functionality.
Any suggestions are appreciated.
Hi Matthew,
Does this help?
The “Current User” context can be used with specific fields/custom fields like Reporter, Assignee, Watcher, Voter, and Any User Picker custom field.
Example: assignee = currentUser()
To get the list of issues where a user is part of a specific group in Jira, use the function “membersOf(GroupName).”
Example: assignee in membersOf(“jira-administrators”)
Regards Mark
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.