From 2656f68d608fafa422be144c0aeccaff9af25a7e Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Wed, 15 Jun 2016 21:37:01 +0200 Subject: [PATCH] load authentication apps first --- ocs/v1.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ocs/v1.php b/ocs/v1.php index 32fcfdd46d..74b6ac1389 100644 --- a/ocs/v1.php +++ b/ocs/v1.php @@ -43,6 +43,8 @@ use Symfony\Component\Routing\Exception\ResourceNotFoundException; use Symfony\Component\Routing\Exception\MethodNotAllowedException; try { + OC_App::loadApps(['session']); + OC_App::loadApps(['authentication']); // load all apps to get all api routes properly setup OC_App::loadApps();