[skip ci] Updated swagger docs
This commit is contained in:
parent
25268530e4
commit
599d05dd5e
|
|
@ -9430,7 +9430,9 @@ const docTemplate = `{
|
|||
"properties": {
|
||||
"new_password": {
|
||||
"description": "The new password for this user.",
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"maxLength": 72,
|
||||
"minLength": 8
|
||||
},
|
||||
"token": {
|
||||
"description": "The previously issued reset token.",
|
||||
|
|
@ -9563,7 +9565,9 @@ const docTemplate = `{
|
|||
"type": "object",
|
||||
"properties": {
|
||||
"new_password": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"maxLength": 72,
|
||||
"minLength": 8
|
||||
},
|
||||
"old_password": {
|
||||
"type": "string"
|
||||
|
|
|
|||
|
|
@ -9422,7 +9422,9 @@
|
|||
"properties": {
|
||||
"new_password": {
|
||||
"description": "The new password for this user.",
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"maxLength": 72,
|
||||
"minLength": 8
|
||||
},
|
||||
"token": {
|
||||
"description": "The previously issued reset token.",
|
||||
|
|
@ -9555,7 +9557,9 @@
|
|||
"type": "object",
|
||||
"properties": {
|
||||
"new_password": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"maxLength": 72,
|
||||
"minLength": 8
|
||||
},
|
||||
"old_password": {
|
||||
"type": "string"
|
||||
|
|
|
|||
|
|
@ -1215,6 +1215,8 @@ definitions:
|
|||
properties:
|
||||
new_password:
|
||||
description: The new password for this user.
|
||||
maxLength: 72
|
||||
minLength: 8
|
||||
type: string
|
||||
token:
|
||||
description: The previously issued reset token.
|
||||
|
|
@ -1311,6 +1313,8 @@ definitions:
|
|||
v1.UserPassword:
|
||||
properties:
|
||||
new_password:
|
||||
maxLength: 72
|
||||
minLength: 8
|
||||
type: string
|
||||
old_password:
|
||||
type: string
|
||||
|
|
|
|||
Loading…
Reference in New Issue