mirror of
https://github.com/Karaka-Management/oms-Profile.git
synced 2026-01-23 20:58:40 +00:00
25 lines
573 B
PHP
25 lines
573 B
PHP
<?php
|
|
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^.*/backend/profile.*$' => [
|
|
[
|
|
'dest' => '\Modules\Profile\Controller:setupProfileStyles',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/profile/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\Profile\Controller:viewProfileList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/profile/single.*$' => [
|
|
[
|
|
'dest' => '\Modules\Profile\Controller:viewProfileSingle',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|