File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ export const NewPasswordSchema = {
202
202
} ,
203
203
new_password : {
204
204
type : 'string' ,
205
- maxLength : 40 ,
205
+ maxLength : 128 ,
206
206
minLength : 8 ,
207
207
title : 'New Password'
208
208
}
@@ -258,13 +258,13 @@ export const UpdatePasswordSchema = {
258
258
properties : {
259
259
current_password : {
260
260
type : 'string' ,
261
- maxLength : 40 ,
261
+ maxLength : 128 ,
262
262
minLength : 8 ,
263
263
title : 'Current Password'
264
264
} ,
265
265
new_password : {
266
266
type : 'string' ,
267
- maxLength : 40 ,
267
+ maxLength : 128 ,
268
268
minLength : 8 ,
269
269
title : 'New Password'
270
270
}
@@ -306,7 +306,7 @@ export const UserCreateSchema = {
306
306
} ,
307
307
password : {
308
308
type : 'string' ,
309
- maxLength : 40 ,
309
+ maxLength : 128 ,
310
310
minLength : 8 ,
311
311
title : 'Password'
312
312
}
@@ -367,7 +367,7 @@ export const UserRegisterSchema = {
367
367
} ,
368
368
password : {
369
369
type : 'string' ,
370
- maxLength : 40 ,
370
+ maxLength : 128 ,
371
371
minLength : 8 ,
372
372
title : 'Password'
373
373
} ,
@@ -430,7 +430,7 @@ export const UserUpdateSchema = {
430
430
anyOf : [
431
431
{
432
432
type : 'string' ,
433
- maxLength : 40 ,
433
+ maxLength : 128 ,
434
434
minLength : 8
435
435
} ,
436
436
{
You can’t perform that action at this time.
0 commit comments