oms-HumanResourceTimeRecording/Application/Timerecording/Routes.php
2020-02-25 20:06:28 +01:00

24 lines
747 B
PHP

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