I created a role : admin. And now I want to add that role to my author field. I just don’t know how to do that … Anyone? Greetz
Subject: how can I add a role to an author field
Bram,
If it’s editable, then the translation formula for the Author field …
@unique(“[admin]” : Authornamefieldgoeshere);
if it’s computed when composed, the value should be built upon something like…:
“[admin]” : @username;
but there again, am I missing something here - you shouldn’t forget that people with Editor or higher access in the ACL will have editor access to all documents they can see - thus the authors name field will not restrict them (although a readers name field may stop them seeing the document)
hope that helps … John Kvalheim
Subject: RE: how can I add a role to an author field
Yes it helps, thank you. I also have a reader field so that problem is fixed.