reset password endpoint polish (#834)

This commit is contained in:
Michael Quigley
2025-02-03 11:57:17 -05:00
parent 164fb96b73
commit d9b32e14c9
17 changed files with 263 additions and 69 deletions

View File

@ -1385,7 +1385,14 @@ func init() {
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/resetPasswordRequest"
"properties": {
"password": {
"type": "string"
},
"token": {
"type": "string"
}
}
}
}
],
@ -2040,17 +2047,6 @@ func init() {
"$ref": "#/definitions/publicFrontend"
}
},
"resetPasswordRequest": {
"type": "object",
"properties": {
"password": {
"type": "string"
},
"token": {
"type": "string"
}
}
},
"share": {
"type": "object",
"properties": {
@ -3640,7 +3636,14 @@ func init() {
"name": "body",
"in": "body",
"schema": {
"$ref": "#/definitions/resetPasswordRequest"
"properties": {
"password": {
"type": "string"
},
"token": {
"type": "string"
}
}
}
}
],
@ -4328,17 +4331,6 @@ func init() {
"$ref": "#/definitions/publicFrontend"
}
},
"resetPasswordRequest": {
"type": "object",
"properties": {
"password": {
"type": "string"
},
"token": {
"type": "string"
}
}
},
"share": {
"type": "object",
"properties": {