Skip to content

Instantly share code, notes, and snippets.

@nateyolles
Created March 27, 2016 19:06
Show Gist options
  • Save nateyolles/2853170d2c101e650dbd to your computer and use it in GitHub Desktop.
Save nateyolles/2853170d2c101e650dbd to your computer and use it in GitHub Desktop.
AEM example slash conf structure
{
"jcr:primaryType": "sling:Folder",
"jcr:mixinTypes": ["rep:AccessControllable"],
"global": {
"jcr:primaryType": "sling:Folder",
"settings": {
"jcr:primaryType": "sling:Folder",
"socialmedia": {
"jcr:primaryType": "cq:Page",
"facebook": {
"jcr:primaryType": "cq:Page",
"jcr:content": {
"jcr:primaryType": "cq:PageContent",
"enabled": false
}
}
}
}
},
"tenants": {
"jcr:primaryType": "sling:Folder",
"piedpiper": {
"jcr:primaryType": "sling:Folder",
"settings": {
"jcr:primaryType": "sling:Folder",
"socialmedia": {
"jcr:primaryType": "cq:Page",
"facebook": {
"jcr:primaryType": "cq:Page",
"jcr:content": {
"jcr:primaryType": "cq:PageContent",
"enabled": true,
"account": "https://www.facebook.com/piedpiper"
}
}
}
}
},
"hooli": {
"jcr:primaryType": "sling:Folder",
"settings": {
"jcr:primaryType": "sling:Folder",
"socialmedia": {
"jcr:primaryType": "cq:Page",
"facebook": {
"jcr:primaryType": "cq:Page",
"jcr:content": {
"jcr:primaryType": "cq:PageContent",
"enabled": true,
"account": "https://www.facebook.com/hooli"
}
}
}
},
"hoolixyz": {
"jcr:primaryType": "sling:Folder",
"settings": {
"jcr:primaryType": "sling:Folder",
"socialmedia": {
"jcr:primaryType": "cq:Page",
"facebook": {
"jcr:primaryType": "cq:Page",
"jcr:content": {
"jcr:primaryType": "cq:PageContent",
"enabled": true,
"account": "https://www.twitter.com/hoolixyz"
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment