[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
This commit is contained in:
parent
7aa3b41dfe
commit
5926ed1f73
2 changed files with 2 additions and 5 deletions
|
@ -46,5 +46,5 @@ type swaggerResponseUserHeatmapData struct {
|
||||||
// swagger:response UserSettings
|
// swagger:response UserSettings
|
||||||
type swaggerResponseUserSettings struct {
|
type swaggerResponseUserSettings struct {
|
||||||
// in:body
|
// in:body
|
||||||
Body []api.UserSettings `json:"body"`
|
Body api.UserSettings `json:"body"`
|
||||||
}
|
}
|
||||||
|
|
3
templates/swagger/v1_json.tmpl
generated
3
templates/swagger/v1_json.tmpl
generated
|
@ -26540,11 +26540,8 @@
|
||||||
"UserSettings": {
|
"UserSettings": {
|
||||||
"description": "UserSettings",
|
"description": "UserSettings",
|
||||||
"schema": {
|
"schema": {
|
||||||
"type": "array",
|
|
||||||
"items": {
|
|
||||||
"$ref": "#/definitions/UserSettings"
|
"$ref": "#/definitions/UserSettings"
|
||||||
}
|
}
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"VariableList": {
|
"VariableList": {
|
||||||
"description": "VariableList",
|
"description": "VariableList",
|
||||||
|
|
Loading…
Reference in a new issue