oms-Support/Application/Ticket/Timerecording/Routes.php
2021-06-05 11:01:03 +02:00

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