oms-BudgetManagement/Admin/Routes/http.php

13 lines
318 B
PHP

<?php
$httpRoutes = [
'^.*/backend/controlling/budgeting/dashboard.*$' => [
[
'dest' => '\Modules\BudgetManagement\Controller:viewBudgetingDashboard',
'verb' => RouteVerb::GET,
'result' => ViewType::HTML,
'layout' => ViewLayout::MAIN,
],
],
];