mirror of
https://github.com/Karaka-Management/oms-Calendar.git
synced 2026-01-24 13:38:40 +00:00
13 lines
296 B
PHP
13 lines
296 B
PHP
<?php
|
|
|
|
$httpRoutes = [
|
|
'^.*/backend/calendar/dashboard.*$' => [
|
|
[
|
|
'dest' => '\Modules\Calendar\Controller:viewCalendarDashboard',
|
|
'verb' => RouteVerb::GET,
|
|
'result' => ViewType::HTML,
|
|
'layout' => ViewLayout::MAIN,
|
|
],
|
|
],
|
|
];
|