mirror of
https://github.com/Karaka-Management/oms-Profile.git
synced 2026-01-27 06:28:40 +00:00
21 lines
544 B
PHP
21 lines
544 B
PHP
<?php
|
|
|
|
$httpRoutes = [
|
|
'^.*/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,
|
|
],
|
|
],
|
|
];
|