Deploy multiple types in different packages

Hello,

we are currently trying to deploy a couple of our own packages to nuxeo, and if we deploy each seperatly it works well. However, once we deploy both of them, one defined type is always missing from the Create New dialog.

We are adding it to the dialog like this :

<?xml version="1.0"?>
<component
...
</doctype>
<doctype name="Folder" append="true">
<subtypes>  
<type>ComponentA</type>
</subtypes>
</doctype>
<doctype name="Workspace" append="true">
<subtypes>
<type>ComponentA</type>
</subtypes>
</doctype>
</extension>
</component>

And vice versa for component B Thus only one is available, like the append of the previous is now saved.

If we add

<subtypes>  
<type>ComponentA</type>
<type>ComponentB</type>
</subtypes>

to each of the files, the types appear but that does not seem like a good solution as the packages should be independent of each other

0 votes

0 answers

576 views

ANSWER