From afffb3dcf6d6972d86754398d4cd964587d6da17 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 0ae472460beda..035266af5b1cc 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); } /**