From abe208ef69c86f7f958d8e79eec75ee0930102b2 Mon Sep 17 00:00:00 2001 From: David Dreschner Date: Wed, 6 May 2026 15:00:42 +0200 Subject: [PATCH] feat(ContactsInteraction): Allow write-properties to support sort favorites feature Signed-off-by: David Dreschner --- apps/contactsinteraction/lib/Card.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/contactsinteraction/lib/Card.php b/apps/contactsinteraction/lib/Card.php index 813195c0bc9a2..dc2effbf02007 100644 --- a/apps/contactsinteraction/lib/Card.php +++ b/apps/contactsinteraction/lib/Card.php @@ -44,6 +44,11 @@ public function getACL(): array { 'principal' => $this->getOwner(), 'protected' => true, ], + [ + 'privilege' => '{DAV:}write-properties', + 'principal' => $this->getOwner(), + 'protected' => true, + ], ]; }