[SWAGGER] Make it consistent with reality

- Make the `UserSettings` definition an non-array, this is consistent
with the existing endpoints that uses this definition.
- Resolves #4179

(cherry picked from commit 5926ed1f73)
This commit is contained in:
Gusted 2024-06-19 07:15:34 +02:00 committed by GitHub
parent 6cb63e03e1
commit dc228b4734
2 changed files with 2 additions and 5 deletions

View file

@ -46,5 +46,5 @@ type swaggerResponseUserHeatmapData struct {
// swagger:response UserSettings
type swaggerResponseUserSettings struct {
// in:body
Body []api.UserSettings `json:"body"`
Body api.UserSettings `json:"body"`
}

View file

@ -25014,10 +25014,7 @@
"UserSettings": {
"description": "UserSettings",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/UserSettings"
}
"$ref": "#/definitions/UserSettings"
}
},
"WatchInfo": {