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