remove dynamic start for routes

This commit is contained in:
Dennis Eichhorn 2024-03-29 15:27:30 +00:00
parent c0dfe52596
commit e7dd2ed3d3

View File

@ -18,7 +18,7 @@ use phpOMS\Account\PermissionType;
use phpOMS\Router\RouteVerb;
return [
'^.*/draw/create(\?.*$|$)' => [
'^/draw/create(\?.*$|$)' => [
[
'dest' => '\Modules\Draw\Controller\BackendController:setUpDrawEditor',
'verb' => RouteVerb::GET,
@ -38,7 +38,7 @@ return [
],
],
],
'^.*/draw/list(\?.*$|$)' => [
'^/draw/list(\?.*$|$)' => [
[
'dest' => '\Modules\Draw\Controller\BackendController:viewDrawList',
'verb' => RouteVerb::GET,
@ -49,7 +49,7 @@ return [
],
],
],
'^.*/draw/view(\?.*$|$)' => [
'^/draw/view(\?.*$|$)' => [
[
'dest' => '\Modules\Draw\Controller\BackendController:setUpDrawEditor',
'verb' => RouteVerb::GET,