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": {
"currentPassword": {
"minLength": 8,
"maxLength": 128,
"type": "string"
},
"newPassword": {
"minLength": 8,
"maxLength": 128,
"type": "string"
}
},
@ -20638,6 +20641,7 @@
"description": "New password",
"example": "newpassword",
"minLength": 8,
"maxLength": 128,
"type": "string"
}
},
@ -21658,6 +21662,7 @@
"description": "Password of the user",
"example": "password123456789",
"minLength": 8,
"maxLength": 128,
"type": "string"
},
"firstname": {

Loading…
Cancel
Save