oms-HumanResourceTimeRecording/Admin/Install/Application/Timerecording/Routes.php
Dennis Eichhorn d8d01c139f fix tests
2023-09-28 17:00:27 +00:00

27 lines
803 B
PHP

<?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,
],
],
],
];