diff options
author | provokateurin <kate@provokateurin.de> | 2024-10-21 12:21:29 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-10-28 09:24:56 +0000 |
commit | 193d06955d18de99240a0aaa8d2328ee408d951b (patch) | |
tree | 07ac90bcfab1466a2fe3fb64bf0fc24e57971432 | |
parent | e5b6634c8fdd4809d68130656a67782c00f9cf40 (diff) | |
download | nextcloud-server-backport/48917/stable29.tar.gz nextcloud-server-backport/48917/stable29.zip |
fix(dav): Cleanup view-only checkbackport/48917/stable29
Signed-off-by: provokateurin <kate@provokateurin.de>
-rw-r--r-- | apps/dav/lib/DAV/ViewOnlyPlugin.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/dav/lib/DAV/ViewOnlyPlugin.php b/apps/dav/lib/DAV/ViewOnlyPlugin.php index 389dd96efb4..9047876e917 100644 --- a/apps/dav/lib/DAV/ViewOnlyPlugin.php +++ b/apps/dav/lib/DAV/ViewOnlyPlugin.php @@ -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); } /** |