Skip to content

Commit

Permalink
fix: trailing slash for admin route
Browse files Browse the repository at this point in the history
Do not know how I did not catch this during GH-1885.
  • Loading branch information
tomudding committed Sep 11, 2024
1 parent ffa2c15 commit abeeb8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/Frontpage/config/module.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@
'admin' => [
'type' => Segment::class,
'options' => [
'route' => '/admin[/]',
'route' => '/admin',
'defaults' => [
'controller' => AdminController::class,
'action' => 'index',
Expand Down

0 comments on commit abeeb8c

Please sign in to comment.