how to integrate and edit content fragment with Edge delivery services xwalk project?
Hi, I am able to integrate content fragment with a normal project by instrumenting it and making it capable of editing in the universal editor, now I want to achieve the same with the xwalk project created using the boilerplate: https://github.com/adobe-rnd/aem-boilerplate-xwalk
I want to include content fragments and edit them using the universal editor itself.
currently, I am including it as :
component-models.json
{
"id": "calender-cf"
"fields": [
{
"component": "text",
"valueType": "string",
"name": "city",
"label": "enter the city",
},
{
"component": "text",
"valueType": "string",
"name": "state",
"label": "enter the state",
}
]
}
component-definition.json
{
"title": "calender-cf",
"id": "calender-cf",
"plugins": {
"aem":{
"page": {
"resourceType": "wknd/components/contentfragment"
}
}
}
}
please help me on how it can be achieved
Thank you
cc : @arunpatidar