mirror of
https://github.com/Karaka-Management/oms-InvestmentManagement.git
synced 2026-01-24 09:38:41 +00:00
21 lines
647 B
PHP
21 lines
647 B
PHP
<?php
|
|
|
|
use Modules\InvestmentManagement\Controller\BackendController;
|
|
use Modules\InvestmentManagement\Models\PermissionState;
|
|
use phpOMS\Account\PermissionType;
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^.*/backend/controlling/investment/dashboard.*$' => [
|
|
[
|
|
'dest' => '\Modules\InvestmentManagement\Controller\BackendController:viewInvestmentDashboard',
|
|
'verb' => RouteVerb::GET,
|
|
'permission' => [
|
|
'module' => BackendController::MODULE_NAME,
|
|
'type' => PermissionType::READ,
|
|
'state' => PermissionState::INVESTMENT,
|
|
],
|
|
],
|
|
],
|
|
];
|