quota module, Workspaces, and DAM Asset Library

How do I use nuxeo-quota in the Asset Library? I can only get the quota tab to show up on Workspaces under Docuent Management.

Using 5.7.x and Studio, I can't figure how how to add a Workspace facet to a Folderish object in the asset library.

0 votes

1 answers

1601 views

ANSWER



page 164 in the PDF manual

Enable quotas on document types

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

0 votes