mirror of
https://github.com/Karaka-Management/oms-AssetManagement.git
synced 2026-01-26 21:08:41 +00:00
13 lines
248 B
PHP
13 lines
248 B
PHP
<?php
|
|
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^.*/backend/accounting/asset/list.*$' => [
|
|
[
|
|
'dest' => '\Modules\AssetManagement\Controller:viewAssetManagementList',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|