How to find which user locked a page?
Hi everyone,
I would like to know how to find which user has locked pages in Touch UI (in AEM versions: 6.5 / Cloud Service) using the Query Builder Debugger ( http://localhost:4502/libs/cq/search/content/querydebug.html ).
For example, I know that we can find pages that are locked using a query like below:
path=/content/sample
property=jcr:content/jcr:lockIsDeep
property.value=true
In a similar way, is it possible to get a list of locked pages WITH who locked them?
I managed to find that the property "jcr:lockOwner" has the information.
I tried below, but it seems not working:
path=/content/sample
property=jcr:content/jcr:lockOwner
Here, if we specify the user name, we can get a limited result:
path=/content/sample
property=jcr:content/jcr:lockOwner
property.value=admin
In above case, we already know who locked the pages.
Is there a way to thoroughly find multiple users?
Any idea how to achieve this?
Thanks in advance 🙂