mirror of
https://github.com/Karaka-Management/oms-Profile.git
synced 2026-01-27 06:28:40 +00:00
17 lines
373 B
PHP
17 lines
373 B
PHP
<?php
|
|
|
|
return [
|
|
'^.*/backend/profile/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\Profile\Controller:viewProfileList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/profile/single.*$' => [
|
|
[
|
|
'dest' => '\Modules\Profile\Controller:viewProfileSingle',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|