From 758383e84715dc10fc9f174fa0a5e4d6d153cc67 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 27 Jul 2017 20:37:31 +0200 Subject: [PATCH] Added calendar dashboard test --- Controller.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Controller.php b/Controller.php index 931e5d4..bd283f7 100644 --- a/Controller.php +++ b/Controller.php @@ -94,7 +94,8 @@ class Controller extends ModuleAbstract implements WebInterface $view->addData('panels', [ $this->app->moduleManager->get('News')->viewDashboard($request, $response, $data), - $this->app->moduleManager->get('Tasks')->viewDashboard($request, $response, $data) + $this->app->moduleManager->get('Tasks')->viewDashboard($request, $response, $data), + $this->app->moduleManager->get('Calendar')->viewDashboard($request, $response, $data), ]); return $view;