From 0088dc10ec39e7ace8847c61f44584a4c9b00b39 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 b8d1e15453473..2c547e4983c29 100644 --- a/apps/dav/lib/DAV/ViewOnlyPlugin.php +++ b/apps/dav/lib/DAV/ViewOnlyPlugin.php @@ -58,6 +58,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); } /**