//if the edit is on defualt we need to check the suer group
var p = Portal("https://[[portal name]].com/portal");
//get the user full object
var u = getUser(p);
//get the user groups
var groups = u.groups
//if the user is in the SuperEditor group allow the edit
if (Find("Default Editors",groups) > 0) {
return true //allow edit
}
return false //fail edit
Solved! Go to Solution.
UPDATE:
Bug can be tracked here BUG-000151193
UPDATE:
Bug can be tracked here BUG-000151193
Thank you sir!