repository owner not able to modify permission on document
Hi, I have created a workflow with a auto activity which runs an automatic method on behalf of repository owner. Below is snippet to modify existing ACL: object.grant(session.getLoginUserName(), 6, null); for(int i=0;i<userName.size();i++){ if(object.getPermitEx(userName.get(i))<6){ object.grant(userName.get(i), 6, null);…