mirror of
https://github.com/Karaka-Management/oms-HumanResourceManagement.git
synced 2026-01-11 20:28:40 +00:00
31 lines
833 B
PHP
31 lines
833 B
PHP
<?php
|
|
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^.*/backend/hr/staff/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\HumanResourceManagement\Controller:viewHrStaffList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/hr/staff/profile.*$' => [
|
|
[
|
|
'dest' => '\Modules\HumanResourceManagement\Controller:viewHrStaffProfile',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/hr/staff/create.*$' => [
|
|
[
|
|
'dest' => '\Modules\HumanResourceManagement\Controller:viewHrStaffCreate',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
'^.*/backend/hr/department/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\HumanResourceManagement\Controller:viewHrDepartmentList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|