Routes files

This commit is contained in:
Dennis Eichhorn 2016-04-02 16:24:59 +02:00
parent 9ced1e2469
commit fe5918643e
3 changed files with 3 additions and 5 deletions

View File

@ -1,3 +1,3 @@
<?php <?php
$consoleRoutes = []; $moduleRoutes = [];

View File

@ -1,12 +1,10 @@
<?php <?php
$httpRoutes = [ return [
'^.*/backend/calendar/dashboard.*$' => [ '^.*/backend/calendar/dashboard.*$' => [
[ [
'dest' => '\Modules\Calendar\Controller:viewCalendarDashboard', 'dest' => '\Modules\Calendar\Controller:viewCalendarDashboard',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
'result' => ViewType::HTML,
'layout' => ViewLayout::MAIN,
], ],
], ],
]; ];

View File

@ -1,3 +1,3 @@
<?php <?php
$socketRoutes = []; $moduleRoutes = [];