mirror of
https://github.com/Karaka-Management/oms-Support.git
synced 2026-01-11 17:18:40 +00:00
26 lines
803 B
PHP
Executable File
26 lines
803 B
PHP
Executable File
<?php declare(strict_types=1);
|
|
return [
|
|
'^/timerecording$' => [
|
|
0 => [
|
|
'dest' => '\Modules\HumanResourceTimeRecording\Controller\TimerecordingController:viewDashboard',
|
|
'verb' => 1,
|
|
'permission' => [
|
|
'module' => 'HumanResourceTimeRecording',
|
|
'type' => 2,
|
|
'state' => 1,
|
|
],
|
|
],
|
|
],
|
|
'^.*/timerecording/dashboard.*$' => [
|
|
0 => [
|
|
'dest' => '\Modules\HumanResourceTimeRecording\Controller\TimerecordingController:viewDashboard',
|
|
'verb' => 1,
|
|
'permission' => [
|
|
'module' => 'HumanResourceTimeRecording',
|
|
'type' => 2,
|
|
'state' => 1,
|
|
],
|
|
],
|
|
],
|
|
];
|