Skip to content
Snippets Groups Projects
Commit fbd1bf90 authored by Fabrice Gangler's avatar Fabrice Gangler :art:
Browse files

doc: add auto generated routes documentation

parent 9ec312c6
No related branches found
No related tags found
No related merge requests found
Pipeline #75854 failed
{
"app_health_check": {
"path": "\/health-check",
"pathRegex": "{^\/health\\-check$}sDu",
"host": "ANY",
"hostRegex": "",
"scheme": "ANY",
"method": "GET|HEAD",
"class": "Symfony\\Component\\Routing\\Route",
"defaults": {
"_controller": "App\\Controller\\HealthCheckController::healthCheck"
},
"requirements": "NO CUSTOM",
"options": {
"compiler_class": "Symfony\\Component\\Routing\\RouteCompiler",
"utf8": true
}
},
"app_home": {
"path": "\/",
"pathRegex": "{^\/$}sDu",
"host": "ANY",
"hostRegex": "",
"scheme": "ANY",
"method": "GET|HEAD",
"class": "Symfony\\Component\\Routing\\Route",
"defaults": {
"_controller": "App\\Controller\\HomeController::index"
},
"requirements": "NO CUSTOM",
"options": {
"compiler_class": "Symfony\\Component\\Routing\\RouteCompiler",
"utf8": true
}
}
}
app_health_check
----------------
- Path: /health-check
- Path Regex: {^/health\-check$}sDu
- Host: ANY
- Host Regex:
- Scheme: ANY
- Method: GET|HEAD
- Class: Symfony\Component\Routing\Route
- Defaults:
- `_controller`: App\Controller\HealthCheckController::healthCheck
- Requirements: NO CUSTOM
- Options:
- `compiler_class`: Symfony\Component\Routing\RouteCompiler
- `utf8`: true
app_home
--------
- Path: /
- Path Regex: {^/$}sDu
- Host: ANY
- Host Regex:
- Scheme: ANY
- Method: GET|HEAD
- Class: Symfony\Component\Routing\Route
- Defaults:
- `_controller`: App\Controller\HomeController::index
- Requirements: NO CUSTOM
- Options:
- `compiler_class`: Symfony\Component\Routing\RouteCompiler
- `utf8`: true
------------------ ---------- -------- ------ --------------- -----------------------------------------------------
Name Method Scheme Host Path Controller
------------------ ---------- -------- ------ --------------- -----------------------------------------------------
app_health_check GET|HEAD ANY ANY /health-check App\Controller\HealthCheckController::healthCheck()
app_home GET|HEAD ANY ANY / App\Controller\HomeController::index()
------------------ ---------- -------- ------ --------------- -----------------------------------------------------
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment