Sharing content across portals

To reuse content of a OpenContent module in another portal then the portal where the content module is you can do like this :

  1. Copy the OpenContent template files to the other portal

  2. Specify the Source of content in the manifest by specify the ModuleId and TabId.
    Remark : The ModuleId and TabId can be on the other portal.

Because editing is not really supported on the other portal make sure you:
3) Disable editing in the "slave" portal which is not the source of the content

{
  "dataSourceConfig": {
       "ModuleId":"123",
       "TabId":"456"
   },
   "disableEdit": true,
   "templates": {
        "template": {
            "type": "single",
            "title": "Template",                 
            "main": {
                "template": "template.hbs",
            }
        }
   }
}