Dear guys,
I want to find tickets which is the group which is included currentuser() create.
As far As I know, I can search the ticket which is created by currentuser via currentuser() function.
I found another function membersof(). But it seems like doesn't work with currentuser() or other function. I have to input specific group name only.
Is it right or there is way to find the ticket which is currentuser's group created?
Regards,
Nate.
HI
Check with the below JQL..
reporter in membersOf("XYZ") and reporter = currentuser()
Thank, Yogesh.
Actually, My question is different.
For example, If there are A, B, C and D(D is me) users. and they are in 'AA' Group.
And I want to find the tickets which are created by 'AA' Group memeber via not specific group name. use function like currentuser()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Nate (이슬기) [Project Management]
No you can't use the results of jql functions in jql functions.
Some alternatives :
If you want to find all issues in projects to where the current user has acces to you can use:
Project = projectsWhereUserHasPermission("Browse Project").
Ifyou want issues where the currentUser has a specific project role you can use:
Project = projectsWhereUserHasRole(Some Role)
But because Groups are global and a "group" is no jql field there, is no function like groupsWhereUserIsMember()
With kind regards
Mario
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.