Routes files

This commit is contained in:
Dennis Eichhorn 2016-04-02 16:24:59 +02:00
parent 4114f2e436
commit 22ae02ae8f
3 changed files with 3 additions and 7 deletions

View File

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

View File

@ -1,20 +1,16 @@
<?php
$httpRoutes = [
return [
'^.*/backend/profile/list.*$' => [
[
'dest' => '\Modules\Profile\Controller:viewProfileList',
'verb' => RouteVerb::GET,
'result' => ViewType::HTML,
'layout' => ViewLayout::MAIN,
],
],
'^.*/backend/profile/single.*$' => [
[
'dest' => '\Modules\Profile\Controller:viewProfileSingle',
'verb' => RouteVerb::GET,
'result' => ViewType::HTML,
'layout' => ViewLayout::MAIN,
],
],
];

View File

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