diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-30 02:31:51 -0700 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-30 02:31:51 -0700 |
commit | ebb2278a6770cc68698e1ba5cb914d615b573519 (patch) | |
tree | d1e89f3a22e1e5edf0b41e3e08f4f07faf64d381 /apps | |
parent | 5899485ca17045e93528c29d1ed63b02192c4191 (diff) | |
parent | aaba0d83b5e9f8b67a739e74172da9464fa562b0 (diff) | |
download | nextcloud-server-ebb2278a6770cc68698e1ba5cb914d615b573519.tar.gz nextcloud-server-ebb2278a6770cc68698e1ba5cb914d615b573519.zip |
Merge pull request #4995 from owncloud/move-aborted-upload-detection-into-plugin-master
Move aborted upload detection into it's own sabedav plugin
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/appinfo/remote.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index 9b114ca2e37..0c1f2e6580c 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -48,6 +48,7 @@ $defaults = new OC_Defaults(); $server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend, $defaults->getName())); $server->addPlugin(new Sabre_DAV_Locks_Plugin($lockBackend)); $server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload +$server->addPlugin(new OC_Connector_Sabre_AbortedUploadDetectionPlugin()); $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin()); $server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin()); |