By default, quotas are available on domains and workspaces only. It is possible to enable them on other document types using Nuxeo Studio.
Create a new XML extension with the following content:
<extension target="org.nuxeo.ecm.platform.actions.ActionService" point="filters"> <filter id="QUOTA_MANAGABLE_DOCTYPES" append="true"> <rule grant="true"> <type>Folder</type> </rule> </filter> </extension>
Replace Folder in the
tag by the document type(s) on which you want to enable quotas.
If you don't want to use Studio and prefer using your IDE, you can just add a contribution with the XML above.
Related documentations