verify endpoint polish (#834)

This commit is contained in:
Michael Quigley
2025-02-03 12:59:55 -05:00
parent d9b32e14c9
commit 14d03b88f7
32 changed files with 1079 additions and 230 deletions

View File

@ -1677,7 +1677,11 @@ func init() {
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/verifyRequest"
"properties": {
"token": {
"type": "string"
}
}
}
}
],
@ -1685,7 +1689,11 @@ func init() {
"200": {
"description": "token ready",
"schema": {
"$ref": "#/definitions/verifyResponse"
"properties": {
"email": {
"type": "string"
}
}
}
},
"404": {
@ -2271,22 +2279,6 @@ func init() {
}
}
},
"verifyRequest": {
"type": "object",
"properties": {
"token": {
"type": "string"
}
}
},
"verifyResponse": {
"type": "object",
"properties": {
"email": {
"type": "string"
}
}
},
"version": {
"type": "string"
}
@ -3928,7 +3920,11 @@ func init() {
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/verifyRequest"
"properties": {
"token": {
"type": "string"
}
}
}
}
],
@ -3936,7 +3932,11 @@ func init() {
"200": {
"description": "token ready",
"schema": {
"$ref": "#/definitions/verifyResponse"
"properties": {
"email": {
"type": "string"
}
}
}
},
"404": {
@ -4555,22 +4555,6 @@ func init() {
}
}
},
"verifyRequest": {
"type": "object",
"properties": {
"token": {
"type": "string"
}
}
},
"verifyResponse": {
"type": "object",
"properties": {
"email": {
"type": "string"
}
}
},
"version": {
"type": "string"
}