diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-16 16:31:15 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-16 16:31:15 +0200 |
commit | 69644747687bc59ea8db0dec6ac8c51979b03f57 (patch) | |
tree | d02b2bd606ea964cbbd6ed86d9dfa01972365cca | |
parent | f16a19bea98cb0e506f23beed3b657cab6bae62d (diff) | |
download | nextcloud-server-69644747687bc59ea8db0dec6ac8c51979b03f57.tar.gz nextcloud-server-69644747687bc59ea8db0dec6ac8c51979b03f57.zip |
adding the plugin to the server object
-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 4cecaf207fd..2ab097df50e 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -47,6 +47,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_FilesPlugin()); $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin()); $server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin()); $server->addPlugin(new OC_Connector_Sabre_ExceptionLoggerPlugin('webdav')); |