A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
What kind of Provider is your folder in? For example VirtualPathNativeProvider or VirtualPathVersioningProvider?
Hi, trying to add access for a group to a UnifiedDirectory folder with following code. Everything look ok while debugging, after acl.add the key is added for my group but method Save don´t seem to save the changes. Anyone got any ideas?
public static void AddFolderAccessForGroup(UnifiedDirectory folder, AccessControlEntry ace)
{
var acl = folder.ACL.CreateWritableClone();
acl.IsInherited = false;
if (acl.Exists(ace.Name))
{
acl.Remove(ace.Name);
}
acl.Add(ace);
acl.Save();
}