Hi,
Is there a way to list all the pages locked in AEM? One of the common issues we have is people forgetting to unlock their pages. The idea is if they have a page where they can monitor all the locked pages, whether by the user or everyone, they'll be able to unlock them sooner.
Thanks
Amin
Solved! Go to Solution.
Views
Replies
Total Likes
When a page is locked - it has this prop:
What you can do is write a QueryBuilder query to fetch all pages in the AEM JCR that are locked - similiar to this: Get list of Activated or Deactivated Pages in CQ
When a page is locked - it has this prop:
What you can do is write a QueryBuilder query to fetch all pages in the AEM JCR that are locked - similiar to this: Get list of Activated or Deactivated Pages in CQ
Thanks for the reply Donald. So I followed your suggestion and used query builder and was able to see all the locked pages in the site. I wrote it like this:
path=/content/website
property=jcr:content/jcr:lockIsDeep
property.value=true
The right side returns a list of all locked pages. I'm trying to figure out how to get it to display the author who locked the page. I can tell that the property is held in "jcr:lockOwner". Is there a way to display that as part of the query?
Views
Replies
Total Likes
Using the Page API, you can get this information - see: Page (Adobe CQ 5.6.1 Java Documentation 5.6.1 API)
Views
Replies
Total Likes
Ok if I understand, this means I have to write code to get this working. It can't be done using the query builder available in CRX. In that case, I am going to have to find a tutorial somewhere for this, my knowledge is very limited.
Thanks again Donald.
Views
Replies
Total Likes
Views
Likes
Replies