oms-HumanResourceTimeRecording/Admin/Install/Application/Timerecording/Routes.php
Dennis Eichhorn e90d6f8e90 autofixes
2024-04-07 17:47:06 +00:00

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