From 8b86b94d47d7fa78669bdc4f17e4b1fa39079787 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 25 Mar 2014 17:46:05 +0100 Subject: [PATCH] call OC_App::loadApps(); to load all commands of all apps and related functionality --- console.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/console.php b/console.php index fc6957062b..dd2c1026e4 100644 --- a/console.php +++ b/console.php @@ -21,6 +21,9 @@ if (!OC::$CLI) { exit(0); } +// load all apps to get all api routes properly setup +OC_App::loadApps(); + $defaults = new OC_Defaults; $application = new Application($defaults->getName(), \OC_Util::getVersionString()); require_once 'core/register_command.php';