Skip to content

Commit a764d0a

Browse files
authored
Merge pull request #2905 from nextcloud/backport/2904/stable27
[stable27] Even more acl ux fixes
2 parents f298bb1 + c52b28d commit a764d0a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

β€Žappinfo/info.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Folders can be configured from *Group folders* in the admin settings.
1010
After a folder is created, the admin can give access to the folder to one or more groups, control their write/sharing permissions and assign a quota for the folder.
1111
1212
Note: Encrypting the contents of group folders is currently not supported.]]></description>
13-
<version>15.3.6</version>
13+
<version>15.3.7</version>
1414
<licence>agpl</licence>
1515
<author>Robin Appelman</author>
1616
<namespace>GroupFolders</namespace>

β€Žsrc/client.js

+4
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,10 @@ class AclDavService {
218218
inheritedAclsById[id] = acl
219219
if (aclsById[id] == null) {
220220
aclsById[id] = acl
221+
222+
aclsById[id].inheritedMask = acl.mask
223+
aclsById[id].inheritedPermissions = acl.permissions
224+
aclsById[id].mask = 0
221225
} else {
222226
aclsById[id].inheritedMask = acl.mask
223227
aclsById[id].inheritedPermissions = acl.permissions

0 commit comments

Comments
Β (0)