continue impl.

This commit is contained in:
Dennis Eichhorn 2023-06-28 12:17:46 +00:00
parent db366dc7ce
commit baf97c4811
2 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@
"type": 2, "type": 2,
"subtype": 1, "subtype": 1,
"name": "Loans", "name": "Loans",
"uri": "{/base}finance/loan/list?{?}", "uri": "{/base}/finance/loan/list?{?}",
"target": "self", "target": "self",
"icon": null, "icon": null,
"order": 1, "order": 1,
@ -19,7 +19,7 @@
"type": 3, "type": 3,
"subtype": 1, "subtype": 1,
"name": "List", "name": "List",
"uri": "{/base}finance/loan/list?{?}", "uri": "{/base}/finance/loan/list?{?}",
"target": "self", "target": "self",
"icon": null, "icon": null,
"order": 1, "order": 1,

View File

@ -6,7 +6,7 @@ use phpOMS\Account\PermissionType;
use phpOMS\Router\RouteVerb; use phpOMS\Router\RouteVerb;
return [ return [
'^.*/controlling/loan/list.*$' => [ '^.*/finance/loan/list.*$' => [
[ [
'dest' => '\Modules\LoanManagement\Controller\BackendController:viewLoanList', 'dest' => '\Modules\LoanManagement\Controller\BackendController:viewLoanList',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
@ -17,7 +17,7 @@ return [
], ],
], ],
], ],
'^.*/controlling/loan/single.*$' => [ '^.*/finance/loan/single.*$' => [
[ [
'dest' => '\Modules\LoanManagement\Controller\BackendController:viewLoanSingle', 'dest' => '\Modules\LoanManagement\Controller\BackendController:viewLoanSingle',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,
@ -28,7 +28,7 @@ return [
], ],
], ],
], ],
'^.*/controlling/loan/create.*$' => [ '^.*/finance/loan/create.*$' => [
[ [
'dest' => '\Modules\LoanManagement\Controller\BackendController:viewLoanCreate', 'dest' => '\Modules\LoanManagement\Controller\BackendController:viewLoanCreate',
'verb' => RouteVerb::GET, 'verb' => RouteVerb::GET,