Admin can not see all list user

Confluence User - 03 Apr, 2017

I had followed this condition to filter the current user. 

 customProperties.name='#currentUser.firstName#'

We know that admin can see all the list user, but when I go to admin page, the admin page also filtering so that admin can not see all list user. How can I solved this?

forms;datalists;userviews

2


03 Apr, 2017
confluenceUser
1
confluenceUser

That's the point of filtering the list. Admin can see all the users from the app management console. While the app is running, filters and permissions would be enforced upon everyone (even if the logged-in user is the administrator).

In your case, you could bypass this condition with something like "... and customProperties.id!='admin'".

Please note since these filters support Hibernate Query Language, you can create any condition you like as far it is a valid HQL query,

Hope this helps!

Thanks.

03 Apr, 2017
confluenceUser
confluenceUser

like this customProperties.name = '#currentUser.firstName#' and customProperties.id!='admin' ?

RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print