Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

users to not break inheritance in live copies

Avatar

Level 1
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
 
 
1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

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

 

View solution in original post

1 Reply

Avatar

Correct answer by
Employee Advisor

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