Skip to content

Commit

Permalink
don't bother checking dav acl's in files
Browse files Browse the repository at this point in the history
any permissions for files is handled in the filesystem layer anyway

Signed-off-by: Robin Appelman <[email protected]>
  • Loading branch information
icewind1991 committed Aug 16, 2023
1 parent 6d0dabe commit 1a9dcc5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions apps/dav/lib/Connector/Sabre/DavAclPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ public function checkPrivileges($uri, $privileges, $recursion = self::R_PARENT,
}

public function propFind(PropFind $propFind, INode $node) {
if ($node instanceof Node) {
// files don't use dav acls
return;
}

// If the node is neither readable nor writable then fail unless its of
// the standard user-principal
if (!($node instanceof User)) {
Expand Down

0 comments on commit 1a9dcc5

Please sign in to comment.