fix(dav): Cleanup view-only check

Signed-off-by: provokateurin <kate@provokateurin.de>
pull/48929/head
provokateurin 2024-10-21 12:21:29 +07:00 committed by backportbot[bot]
parent 566d48d5fd
commit 0088dc10ec
1 changed files with 1 additions and 0 deletions

@ -58,6 +58,7 @@ class ViewOnlyPlugin extends ServerPlugin {
//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);
}
/**