From 321af53ebc2bc91c67fb565007cd01fdfbaea35c Mon Sep 17 00:00:00 2001 From: provokateurin Date: Mon, 21 Oct 2024 12:21:29 +0200 Subject: [PATCH] fix(dav): Cleanup view-only check Signed-off-by: provokateurin --- apps/dav/lib/DAV/ViewOnlyPlugin.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/dav/lib/DAV/ViewOnlyPlugin.php b/apps/dav/lib/DAV/ViewOnlyPlugin.php index b6139638aa5e5..df3301e2e6b99 100644 --- a/apps/dav/lib/DAV/ViewOnlyPlugin.php +++ b/apps/dav/lib/DAV/ViewOnlyPlugin.php @@ -46,6 +46,7 @@ public function initialize(Server $server): void { //Sabre\DAV\CorePlugin::httpGet $this->server->on('method:GET', [$this, 'checkViewOnly'], 90); $this->server->on('method:COPY', [$this, 'checkViewOnly'], 90); + $this->server->on('method:MOVE', [$this, 'checkViewOnly'], 90); } /**