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

how to create a group that replicate OOO Content-Author group using Apache Sling Repo Init script?

Avatar

Level 4

I have a use case, where i need to restrict non admin user(Content-Author) to delete/modify/move for certain site path using Repo Init script json.

 

1 Accepted Solution

Avatar

Correct answer by
Community Advisor
4 Replies

Avatar

Correct answer by
Community Advisor

Please check below for examples

https://www.nextrow.com/blog/adobe-experience-manager/getting-started-with-apache-sling-repo-init

https://drewrobinson.com/blog/aem-repository-initialization-with-repoinit

 

scripts=[
    "
    create group custom-group
    add authors to group administrators
    "
]


Arun Patidar