Prevent users from deleting files uploaded Alfresco

1.5k Views Asked by At

I've been testing Alfresco for a few days but seem not to find a solution for this.

In Alfresco when an user uploads a file to a folder where it has the contributor role everything works nice, but he can delete that file. I want avoid that so I have defined a rule that takes the ownership of every file uploaded. The script is defined as

document.setOwner('admin');

This way the file can be deleted only by admin. If the rule is active the upload fails for everyother user. Does anybody know what it takes to take ownership of a file in that situation using a script?

I am using Alfresco 4.0a

Thanks.

1

There are 1 best solutions below

0
On

I guess you can better do the following

document.setOwner("");

Because admin already has full authority in Alfresco.