Routes files

This commit is contained in:
Dennis Eichhorn 2016-04-02 16:24:59 +02:00
parent fc51c7a9f2
commit 76c6a84bf1
3 changed files with 3 additions and 7 deletions

View File

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

View File

@ -1,6 +1,6 @@
<?php
$httpRoutes = [
return [
'^.*/backend/editor/create.*$' => [
[
'dest' => '\Modules\Editor\Controller:setUpEditorEditor',
@ -11,16 +11,12 @@ $httpRoutes = [
[
'dest' => '\Modules\Editor\Controller:viewEditorCreate',
'verb' => RouteVerb::GET,
'result' => ViewType::HTML,
'layout' => ViewLayout::MAIN,
],
],
'^.*/backend/editor/list.*$' => [
[
'dest' => '\Modules\Editor\Controller:viewEditorList',
'verb' => RouteVerb::GET,
'result' => ViewType::HTML,
'layout' => ViewLayout::MAIN,
],
],
];

View File

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