summaryrefslogtreecommitdiffstats
path: root/apps/remoteStorage
diff options
context:
space:
mode:
authorMichiel de Jong <michiel@unhosted.org>2012-05-09 15:19:06 +0200
committerMichiel de Jong <michiel@unhosted.org>2012-05-09 15:28:30 +0200
commit2cf5bb684969631d01f522447cd4f78bebe9d6fd (patch)
tree3a25c25ea38aaa1a8ed43b9f286c6b5cd6124583 /apps/remoteStorage
parent7d090a45d21f8a662d8562abedf4d8dba70a70e0 (diff)
downloadnextcloud-server-2cf5bb684969631d01f522447cd4f78bebe9d6fd.tar.gz
nextcloud-server-2cf5bb684969631d01f522447cd4f78bebe9d6fd.zip
new requires now necessary
Diffstat (limited to 'apps/remoteStorage')
-rwxr-xr-xapps/remoteStorage/auth.php12
1 files changed, 11 insertions, 1 deletions
diff --git a/apps/remoteStorage/auth.php b/apps/remoteStorage/auth.php
index ac8c2423291..502bfc0b33b 100755
--- a/apps/remoteStorage/auth.php
+++ b/apps/remoteStorage/auth.php
@@ -29,9 +29,19 @@
// Do not load FS ...
$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('oauth_ro_auth.php');