Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ocs
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-02-18 17:51:59 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-02-18 17:51:59 +0400
commit8f5c641cd854d27abc876db8dda4ec0025981186 (patch)
treed1df2993c6f9b72f94dea32ab4449cefa66cb565 /ocs
parent79fc4f312604feb20f96378d052703ec4768ecad (diff)
load all apps in ocs/v1.php
Diffstat (limited to 'ocs')
-rw-r--r--ocs/v1.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/ocs/v1.php b/ocs/v1.php
index 1c7d1c89768..93d9c67b045 100644
--- a/ocs/v1.php
+++ b/ocs/v1.php
@@ -21,12 +21,18 @@
*
*/
-require_once('../lib/base.php');
+require_once '../lib/base.php';
+
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
use Symfony\Component\Routing\Exception\MethodNotAllowedException;
try {
+ // load all apps to get all api routes properly setup
+ OC_App::loadApps();
+
+ // match the request
OC::getRouter()->match('/ocs'.OC_Request::getRawPathInfo());
+
} catch (ResourceNotFoundException $e) {
OC_OCS::notFound();
} catch (MethodNotAllowedException $e) {