mirror of
https://github.com/Aviortheking/DeltaCMS.git
synced 2025-04-22 19:02:12 +00:00
25 lines
515 B
JSON
25 lines
515 B
JSON
{
|
|
"routes": {
|
|
"example_route": {
|
|
"path": "/example",
|
|
"controller": "\\ModuleName\\Controller\\ExampleController",
|
|
"function": "index"
|
|
},
|
|
"loggedIn": {
|
|
"path":"/example/is-logged",
|
|
"controller":"\\ModuleName\\Controller\\ExampleController",
|
|
"function": "isLoggedIn"
|
|
},
|
|
"example_route_with_arg": {
|
|
"path": "/example/{arg}",
|
|
"controller": "\\ModuleName\\Controller\\ExampleController",
|
|
"function": "example",
|
|
"args": {
|
|
"arg": {
|
|
"regex": "/[a-z]+/"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|