How to disable personal workspace
Is it possible to disable the “personal workspace” in DM?
If so, how?
Thanks.
Patrick
1 votes
1 answers
2288 views
Yes, it's possible through an Action contribution. If you want to disable (hide) for everyone then a contribution like follows will work, otherwise if you want enabled for some use a filter to control who does/does not have access. Since you'll be overriding an existing contribution make sure to include required
<require>org.nuxeo.ecm.platform.userworkspace.actions</require>
<extension target="org.nuxeo.ecm.platform.actions.ActionService" point="actions">
<action id="SHOW_PERSONAL_WORKSPACE" enabled="false" />
: