Permissions on relations [need to deny delete relations]

HI all

EDIT: what I basically need to know is if there is a way to control who can delete/edit relations between documents. Thanks

i need to deny the remove relation permission to the user that created a document (and to all other users)after document creation.

I haven't found permission related to this.

I would like to know if there is a way to achieve this in a manner similar to what is described here:

Delete permission

<require>org.nuxeo.ecm.core.security.SecurityService</require>
<require>org.nuxeo.ecm.core.security.defaultPermissions</require>

<extension target="org.nuxeo.ecm.core.security.SecurityService" point="permissions">
<!-- Removed 'Remove' from Write permission -->
    <permission name="Write">
        <remove>Remove</remove>
    </permission>
</extension>

Or if there is any other way to do so.

1 votes

0 answers

1965 views

ANSWER