Browse Source

Merge pull request #6879 from nocodb/fix/limit-password-length

fix: Add max length password validation
pull/6896/head
աӄա 1 year ago committed by GitHub
parent
commit
72ef5d7511
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      packages/nocodb/src/schema/swagger.json

5
packages/nocodb/src/schema/swagger.json

@ -20586,10 +20586,13 @@
], ],
"properties": { "properties": {
"currentPassword": { "currentPassword": {
"minLength": 8,
"maxLength": 128,
"type": "string" "type": "string"
}, },
"newPassword": { "newPassword": {
"minLength": 8, "minLength": 8,
"maxLength": 128,
"type": "string" "type": "string"
} }
}, },
@ -20638,6 +20641,7 @@
"description": "New password", "description": "New password",
"example": "newpassword", "example": "newpassword",
"minLength": 8, "minLength": 8,
"maxLength": 128,
"type": "string" "type": "string"
} }
}, },
@ -21658,6 +21662,7 @@
"description": "Password of the user", "description": "Password of the user",
"example": "password123456789", "example": "password123456789",
"minLength": 8, "minLength": 8,
"maxLength": 128,
"type": "string" "type": "string"
}, },
"firstname": { "firstname": {

Loading…
Cancel
Save