mirror of
https://github.com/Karaka-Management/oms-BudgetManagement.git
synced 2026-01-11 23:28:42 +00:00
13 lines
259 B
PHP
13 lines
259 B
PHP
<?php
|
|
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^.*/backend/controlling/budgeting/dashboard.*$' => [
|
|
[
|
|
'dest' => '\Modules\BudgetManagement\Controller:viewBudgetingDashboard',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|