summaryrefslogtreecommitdiffstats
path: root/apps/remoteStorage
diff options
context:
space:
mode:
authorMichiel de Jong <michiel@unhosted.org>2012-05-09 15:22:05 +0200
committerMichiel de Jong <michiel@unhosted.org>2012-05-09 15:28:30 +0200
commit9d443e021db8b9151342ee57b272cb7c7825a2db (patch)
tree757d36b0310c8f1264f6233aadd7a38c056394c1 /apps/remoteStorage
parent2cf5bb684969631d01f522447cd4f78bebe9d6fd (diff)
downloadnextcloud-server-9d443e021db8b9151342ee57b272cb7c7825a2db.tar.gz
nextcloud-server-9d443e021db8b9151342ee57b272cb7c7825a2db.zip
new requires in WebDAV.php
Diffstat (limited to 'apps/remoteStorage')
-rwxr-xr-xapps/remoteStorage/WebDAV.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/apps/remoteStorage/WebDAV.php b/apps/remoteStorage/WebDAV.php
index 45f6cac3166..ab498db07da 100755
--- a/apps/remoteStorage/WebDAV.php
+++ b/apps/remoteStorage/WebDAV.php
@@ -30,8 +30,19 @@
$RUNTIME_NOSETUPFS = true;
+require_once('../../lib/base.php');
+
+require_once('../../lib/user.php');
+require_once('../../lib/public/user.php');
+
+require_once('../../lib/app.php');
+require_once('../../lib/public/app.php');
+
+require_once('../../3rdparty/Sabre/DAV/Auth/IBackend.php');
+require_once('../../3rdparty/Sabre/DAV/Auth/Backend/AbstractBasic.php');
+require_once('../../lib/connector/sabre/auth.php');
+
OCP\App::checkAppEnabled('remoteStorage');
-require_once('Sabre/autoload.php');
require_once('lib_remoteStorage.php');
require_once('BearerAuth.php');
require_once('oauth_ro_auth.php');