mirror of
https://github.com/Karaka-Management/oms-Media.git
synced 2026-01-28 08:48:40 +00:00
13 lines
305 B
PHP
13 lines
305 B
PHP
<?php
|
|
|
|
$httpRoutes = [
|
|
'^.*/backend/accounting/personal/entries.*$' => [
|
|
[
|
|
'dest' => '\Modules\Accounting\Controller:viewPersonalEntries',
|
|
'verb' => RouteVerb::GET,
|
|
'result' => ViewType::HTML,
|
|
'layout' => ViewLayout::MAIN,
|
|
],
|
|
],
|
|
];
|