mirror of
https://github.com/Karaka-Management/oms-BudgetManagement.git
synced 2026-01-27 14:58:42 +00:00
21 lines
583 B
PHP
21 lines
583 B
PHP
<?php
|
|
|
|
use phpOMS\Router\RouteVerb;
|
|
use phpOMS\Account\PermissionType;
|
|
use Modules\BudgetManagement\Models\PermissionState;
|
|
use Modules\BudgetManagement\Controller;
|
|
|
|
return [
|
|
'^.*/backend/controlling/budget/dashboard.*$' => [
|
|
[
|
|
'dest' => '\Modules\BudgetManagement\Controller:viewBudgetingDashboard',
|
|
'verb' => RouteVerb::GET,
|
|
'permission' => [
|
|
'module' => Controller::MODULE_NAME,
|
|
'type' => PermissionType::READ,
|
|
'state' => PermissionState::BUDGET,
|
|
],
|
|
],
|
|
],
|
|
];
|