diff options
Diffstat (limited to 'docs/swagger.json')
| -rw-r--r-- | docs/swagger.json | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/docs/swagger.json b/docs/swagger.json index bba8488..646da0f 100644 --- a/docs/swagger.json +++ b/docs/swagger.json | |||
| @@ -252,7 +252,7 @@ | |||
| 252 | "type": "object", | 252 | "type": "object", |
| 253 | "properties": { | 253 | "properties": { |
| 254 | "data": { | 254 | "data": { |
| 255 | "$ref": "#/definitions/handlers.ScoreLogsResponse" | 255 | "$ref": "#/definitions/handlers.LogsResponse" |
| 256 | } | 256 | } |
| 257 | } | 257 | } |
| 258 | } | 258 | } |
| @@ -1211,6 +1211,31 @@ | |||
| 1211 | } | 1211 | } |
| 1212 | } | 1212 | } |
| 1213 | }, | 1213 | }, |
| 1214 | "handlers.LogsResponse": { | ||
| 1215 | "type": "object", | ||
| 1216 | "properties": { | ||
| 1217 | "logs": { | ||
| 1218 | "type": "array", | ||
| 1219 | "items": { | ||
| 1220 | "$ref": "#/definitions/handlers.LogsResponseDetails" | ||
| 1221 | } | ||
| 1222 | } | ||
| 1223 | } | ||
| 1224 | }, | ||
| 1225 | "handlers.LogsResponseDetails": { | ||
| 1226 | "type": "object", | ||
| 1227 | "properties": { | ||
| 1228 | "date": { | ||
| 1229 | "type": "string" | ||
| 1230 | }, | ||
| 1231 | "detail": { | ||
| 1232 | "type": "string" | ||
| 1233 | }, | ||
| 1234 | "user": { | ||
| 1235 | "$ref": "#/definitions/models.UserShort" | ||
| 1236 | } | ||
| 1237 | } | ||
| 1238 | }, | ||
| 1214 | "handlers.MapLeaderboardsResponse": { | 1239 | "handlers.MapLeaderboardsResponse": { |
| 1215 | "type": "object", | 1240 | "type": "object", |
| 1216 | "properties": { | 1241 | "properties": { |