summaryrefslogtreecommitdiffstats
path: root/apps/dav
diff options
context:
space:
mode:
authorThomas Müller <DeepDiver1975@users.noreply.github.com>2016-07-29 06:40:39 +0200
committerLukas Reschke <lukas@statuscode.ch>2016-07-29 10:03:46 +0200
commit6f34c37cfbaab73d13ba552d500311431cfd6303 (patch)
tree2f0a967d7ae584ca8444cda25c76a5beea8a9a67 /apps/dav
parent54ae8eede39e58c890a42b44505a254fc5f94765 (diff)
downloadnextcloud-server-6f34c37cfbaab73d13ba552d500311431cfd6303.tar.gz
nextcloud-server-6f34c37cfbaab73d13ba552d500311431cfd6303.zip
Adding quota plugin to new dav endpoint (#25615)
* Adding quota plugin to new dav endpoint * Added integrated test failing in old endpoint * Added 0B quota test
Diffstat (limited to 'apps/dav')
-rw-r--r--apps/dav/lib/Server.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/dav/lib/Server.php b/apps/dav/lib/Server.php
index e80f9ae125a..9058548489c 100644
--- a/apps/dav/lib/Server.php
+++ b/apps/dav/lib/Server.php
@@ -173,6 +173,9 @@ class Server {
)
)
);
+ $this->server->addPlugin(
+ new \OCA\DAV\Connector\Sabre\QuotaPlugin($view));
+
}
});
}