mirror of
https://github.com/Karaka-Management/oms-Dashboard.git
synced 2026-01-23 23:18:42 +00:00
13 lines
215 B
PHP
13 lines
215 B
PHP
<?php
|
|
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^.*/backend(\?.*)?$' => [
|
|
[
|
|
'dest' => '\Modules\Dashboard\Controller:viewDashboard',
|
|
'verb' => RouteVerb::GET,
|
|
],
|
|
],
|
|
];
|