Files
P42_UI/app/config/baseRoutes.json
T
2025-09-18 17:55:05 +00:00

29 lines
603 B
JSON
Executable File

[
{
"url": "!defaultroute",
"role": "*",
"controller" : "/common/errorController",
"method": "_404"
},
{
"url": "/401",
"role": "*",
"controller" : "/common/errorController",
"method": "_401"
},
{
"url": "/dashboard",
"role": [ "admin" ],
"controller" : "/dashboard/DashboardsController"
},
{
"url": "/",
"role": "admin",
"exturl": "/dashboard"
},
{
"url": "/",
"role": [ "*" ],
"exturl": "/dashboard"
}
]