mirror of
https://github.com/Karaka-Management/oms-EventManagement.git
synced 2026-01-24 14:58:42 +00:00
23 lines
626 B
PHP
23 lines
626 B
PHP
<?php
|
|
|
|
return [
|
|
'^.*/backend/eventmanagement/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\EventManagement\Controller:viewEventManagementList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/eventmanagement/create.*$' => [
|
|
[
|
|
'dest' => '\Modules\EventManagement\Controller:viewEventManagementCreate',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/eventmanagement/profile.*$' => [
|
|
[
|
|
'dest' => '\Modules\EventManagement\Controller:viewEventManagementProfile',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|