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