aboutsummaryrefslogtreecommitdiff
path: root/docs/docs.go
diff options
context:
space:
mode:
authorNidboj132 <lol2s@vp.plm>2023-05-06 18:58:55 +0200
committerNidboj132 <lol2s@vp.plm>2023-05-06 18:58:55 +0200
commit97c0d681d2b24f12327982fee88000c84424d2c8 (patch)
tree0829ced3f214de97de28f77bfdb7a87725b77ce2 /docs/docs.go
parentlogin (diff)
parentMerge branch 'main' of https://github.com/pektezol/LeastPortals (diff)
downloadlphub-97c0d681d2b24f12327982fee88000c84424d2c8.tar.gz
lphub-97c0d681d2b24f12327982fee88000c84424d2c8.tar.bz2
lphub-97c0d681d2b24f12327982fee88000c84424d2c8.zip
Merge branch 'main' of https://github.com/pektezol/LeastPortals
Diffstat (limited to '')
-rw-r--r--docs/docs.go35
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/docs.go b/docs/docs.go
index bb6f6ab..d39fd1c 100644
--- a/docs/docs.go
+++ b/docs/docs.go
@@ -715,6 +715,41 @@ const docTemplate = `{
715 } 715 }
716 } 716 }
717 } 717 }
718 },
719 "delete": {
720 "produces": [
721 "application/json"
722 ],
723 "tags": [
724 "auth"
725 ],
726 "summary": "Deletes the token cookie from the user.",
727 "responses": {
728 "200": {
729 "description": "OK",
730 "schema": {
731 "allOf": [
732 {
733 "$ref": "#/definitions/models.Response"
734 },
735 {
736 "type": "object",
737 "properties": {
738 "data": {
739 "$ref": "#/definitions/models.LoginResponse"
740 }
741 }
742 }
743 ]
744 }
745 },
746 "404": {
747 "description": "Not Found",
748 "schema": {
749 "$ref": "#/definitions/models.Response"
750 }
751 }
752 }
718 } 753 }
719 }, 754 },
720 "/users/{id}": { 755 "/users/{id}": {