Skip to content

Commit

Permalink
remove dynamic start for routes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Eichhorn committed Mar 29, 2024
1 parent 1f061d1 commit 62c0921
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Admin/Routes/Web/Backend.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use phpOMS\Router\RouteVerb;

return [
'^.*/view(\?.*$|$)' => [
'^/view(\?.*$|$)' => [
[
'dest' => '\Modules\Profile\Controller\BackendController:setupProfileStyles',
'verb' => RouteVerb::GET,
Expand All @@ -29,7 +29,7 @@
],
],
],
'^.*/profile/list(\?.*$|$)' => [
'^/profile/list(\?.*$|$)' => [
[
'dest' => '\Modules\Profile\Controller\BackendController:viewProfileList',
'verb' => RouteVerb::GET,
Expand All @@ -40,7 +40,7 @@
],
],
],
'^.*/profile/view(\?.*$|$)' => [
'^/profile/view(\?.*$|$)' => [
[
'dest' => '\Modules\Profile\Controller\BackendController:viewProfileView',
'verb' => RouteVerb::GET,
Expand All @@ -51,7 +51,7 @@
],
],
],
'^.*/admin/module/settings/view/create(\?.*$|$)' => [
'^/admin/module/settings/view/create(\?.*$|$)' => [
[
'dest' => '\Modules\Profile\Controller\BackendController:viewProfileAdminCreate',
'verb' => RouteVerb::GET,
Expand Down

0 comments on commit 62c0921

Please sign in to comment.