Add protected operator console prototype

This commit is contained in:
2026-06-27 14:11:56 +02:00
parent fbcee008da
commit 32930043ff
6 changed files with 443 additions and 3 deletions

View File

@@ -1656,6 +1656,55 @@
]
}
},
"/console": {
"get": {
"operationId": "operator_console_console_get",
"parameters": [
{
"in": "header",
"name": "authorization",
"required": false,
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Authorization"
}
}
],
"responses": {
"200": {
"content": {
"text/html": {
"schema": {
"type": "string"
}
}
},
"description": "Successful Response"
},
"422": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
},
"description": "Validation Error"
}
},
"summary": "Operator Console",
"tags": [
"operator-console"
]
}
},
"/healthz": {
"get": {
"operationId": "healthz_healthz_get",