I want to create a new group that has the following access
- The group should have full access (except delete) to /content/mysite and anything under it (example: full access except delete to /content/mysite/site-header/header)
- The group should have read-only access to this exact path => /content/mysite/en
- The group should have full access (except delete) to any child pages/folder inside /content/mysite/en (example: full access except delete to /content/mysite/en/about)
- The group should should be able to create pages under /content/mysite/en
I tried the thing below and it works except for no.4. Any thoughts how it can be done?
(done using /useradmin)
- path: /content/mysite
type: allow
permissions: read,modify,create,acl_read,acl_edit,replicate
--------
(done inside CRX/DE)
- path: /content/mysite/en
type: deny
privileges: jcr:all
repGlob: ""
- path: /content/mysite/en
type: deny
privileges: jcr:all
repGlob: /jcr:*
- path: /content/mysite/en
type: allow
privileges: jcr:read
repGlob: ""
- path: /content/mysite/en
type: allow
privileges: jcr:read
repGlob: /jcr:*