aboutsummaryrefslogtreecommitdiff
path: root/docs/docs.go
diff options
context:
space:
mode:
authorArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2023-09-25 22:43:55 +0300
committerGitHub <noreply@github.com>2023-09-25 22:43:55 +0300
commit7f420a2c34667ed7addab356b17e4be2612ecc0b (patch)
tree75196ccaa66d3488923634580f20a52973787704 /docs/docs.go
parentdocs: add delete record, update discussion and main (#56) (diff)
downloadlphub-7f420a2c34667ed7addab356b17e4be2612ecc0b.tar.gz
lphub-7f420a2c34667ed7addab356b17e4be2612ecc0b.tar.bz2
lphub-7f420a2c34667ed7addab356b17e4be2612ecc0b.zip
feat: completed profile rankings (#51)
Former-commit-id: a2ef452a32803181f6937f08840e5f0e55ed6403
Diffstat (limited to '')
-rw-r--r--docs/docs.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/docs.go b/docs/docs.go
index 5a107c1..bb2738c 100644
--- a/docs/docs.go
+++ b/docs/docs.go
@@ -1794,7 +1794,7 @@ const docTemplate = `{
1794 "p2sr": { 1794 "p2sr": {
1795 "type": "string" 1795 "type": "string"
1796 }, 1796 },
1797 "stream": { 1797 "steam": {
1798 "type": "string" 1798 "type": "string"
1799 }, 1799 },
1800 "twitch": { 1800 "twitch": {
@@ -1933,11 +1933,14 @@ const docTemplate = `{
1933 "models.UserRanking": { 1933 "models.UserRanking": {
1934 "type": "object", 1934 "type": "object",
1935 "properties": { 1935 "properties": {
1936 "placement": {
1937 "type": "integer"
1938 },
1936 "total_score": { 1939 "total_score": {
1937 "type": "integer" 1940 "type": "integer"
1938 }, 1941 },
1939 "user": { 1942 "user": {
1940 "$ref": "#/definitions/models.UserShort" 1943 "$ref": "#/definitions/models.UserShortWithAvatar"
1941 } 1944 }
1942 } 1945 }
1943 }, 1946 },