diff options
Diffstat (limited to 'docs/docs.go')
| -rw-r--r-- | docs/docs.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/docs.go b/docs/docs.go index 01eb022..688d7ed 100644 --- a/docs/docs.go +++ b/docs/docs.go | |||
| @@ -1418,6 +1418,7 @@ const docTemplate = `{ | |||
| 1418 | "category_id", | 1418 | "category_id", |
| 1419 | "description", | 1419 | "description", |
| 1420 | "record_date", | 1420 | "record_date", |
| 1421 | "score_count", | ||
| 1421 | "user_name" | 1422 | "user_name" |
| 1422 | ], | 1423 | ], |
| 1423 | "properties": { | 1424 | "properties": { |
| @@ -1484,6 +1485,7 @@ const docTemplate = `{ | |||
| 1484 | "description", | 1485 | "description", |
| 1485 | "record_date", | 1486 | "record_date", |
| 1486 | "route_id", | 1487 | "route_id", |
| 1488 | "score_count", | ||
| 1487 | "user_name" | 1489 | "user_name" |
| 1488 | ], | 1490 | ], |
| 1489 | "properties": { | 1491 | "properties": { |
| @@ -1863,6 +1865,17 @@ const docTemplate = `{ | |||
| 1863 | } | 1865 | } |
| 1864 | } | 1866 | } |
| 1865 | }, | 1867 | }, |
| 1868 | "models.CategoryPortal": { | ||
| 1869 | "type": "object", | ||
| 1870 | "properties": { | ||
| 1871 | "category": { | ||
| 1872 | "$ref": "#/definitions/models.Category" | ||
| 1873 | }, | ||
| 1874 | "portal_count": { | ||
| 1875 | "type": "integer" | ||
| 1876 | } | ||
| 1877 | } | ||
| 1878 | }, | ||
| 1866 | "models.Chapter": { | 1879 | "models.Chapter": { |
| 1867 | "type": "object", | 1880 | "type": "object", |
| 1868 | "properties": { | 1881 | "properties": { |
| @@ -1883,6 +1896,12 @@ const docTemplate = `{ | |||
| 1883 | "models.Game": { | 1896 | "models.Game": { |
| 1884 | "type": "object", | 1897 | "type": "object", |
| 1885 | "properties": { | 1898 | "properties": { |
| 1899 | "category_portals": { | ||
| 1900 | "type": "array", | ||
| 1901 | "items": { | ||
| 1902 | "$ref": "#/definitions/models.CategoryPortal" | ||
| 1903 | } | ||
| 1904 | }, | ||
| 1886 | "id": { | 1905 | "id": { |
| 1887 | "type": "integer" | 1906 | "type": "integer" |
| 1888 | }, | 1907 | }, |
| @@ -1983,6 +2002,9 @@ const docTemplate = `{ | |||
| 1983 | "models.MapShort": { | 2002 | "models.MapShort": { |
| 1984 | "type": "object", | 2003 | "type": "object", |
| 1985 | "properties": { | 2004 | "properties": { |
| 2005 | "difficulty": { | ||
| 2006 | "type": "integer" | ||
| 2007 | }, | ||
| 1986 | "id": { | 2008 | "id": { |
| 1987 | "type": "integer" | 2009 | "type": "integer" |
| 1988 | }, | 2010 | }, |
| @@ -1994,6 +2016,9 @@ const docTemplate = `{ | |||
| 1994 | }, | 2016 | }, |
| 1995 | "name": { | 2017 | "name": { |
| 1996 | "type": "string" | 2018 | "type": "string" |
| 2019 | }, | ||
| 2020 | "portal_count": { | ||
| 2021 | "type": "integer" | ||
| 1997 | } | 2022 | } |
| 1998 | } | 2023 | } |
| 1999 | }, | 2024 | }, |