users to not break inheritance in live copies | Community
Skip to main content
March 10, 2021
Solved

users to not break inheritance in live copies

  • March 10, 2021
  • 1 reply
  • 717 views
How and where to change access permissions if we want authors to just add components for live copies, but don't want to break the inheritance of live copies.
 
Thanks
 
 
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by user05162

When a inheritance is cancelled, AEM bascially updates the jcr:mixinTypes with cq:LiveSyncCancelled. Permissions for this cannot be managed OOTB unless you take the edit permissions which will cause users to not able to add any content to the pages as well.

 

I believe you need to write custom code using the oak API to control permissions for a particular node type

 

[1] https://jackrabbit.apache.org/oak/docs/security/permission.html

 

1 reply

user05162Adobe EmployeeAccepted solution
Adobe Employee
March 10, 2021

When a inheritance is cancelled, AEM bascially updates the jcr:mixinTypes with cq:LiveSyncCancelled. Permissions for this cannot be managed OOTB unless you take the edit permissions which will cause users to not able to add any content to the pages as well.

 

I believe you need to write custom code using the oak API to control permissions for a particular node type

 

[1] https://jackrabbit.apache.org/oak/docs/security/permission.html