Hey,
I would like to filter any issue which is not assigned or created by the current user.
I did it by using this JQL line: assignee = currentUser() OR creator = currentUser()
But there should be an exception. In my project there are 4 people who have the project role of an administator. How can they view any issue without being assigned or the author of that issue? Is it possible? I wanted to use functions e.g. memberOf() but it does not work because of missing those fields in my screen.
Hi @Onur Cevik
First of all you mentioned that you would like to filter issues that are "not assigned or created by current user" .. This mean that JQL I think should look like this
assignee != currentUser() OR creator != currentUser()
As for admins exception.. It all depends how you have configured your instance / project. Do you use by default any Security Level? If not then you can add those admins to the project (they need to have Browse Project permission and they should be able to view all tickets from the project). Of course you can add them directly by name to the Permission Scheme or use Administrator project role..
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.