mirror of
https://github.com/Karaka-Management/oms-HumanResourceTimeRecording.git
synced 2026-01-22 08:48:43 +00:00
13 lines
254 B
PHP
13 lines
254 B
PHP
<?php
|
|
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^.*/backend/hr/timerecording/dashboard.*$' => [
|
|
[
|
|
'dest' => '\Modules\HumanResourceTimeRecording\Controller:viewDashboard',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|