From 5546118517d51a09c2cff1c7af5c09dc3b42fd1c Mon Sep 17 00:00:00 2001 From: amcmanu3 Date: Sun, 5 Nov 2023 13:25:39 -0500 Subject: [PATCH] Remove password max length --- app/classes/controllers/users_controller.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/classes/controllers/users_controller.py b/app/classes/controllers/users_controller.py index ed53ad61..87cc513c 100644 --- a/app/classes/controllers/users_controller.py +++ b/app/classes/controllers/users_controller.py @@ -45,8 +45,7 @@ class UsersController: }, "password": { "type": "string", - "maxLength": 20, - "minLength": 6, + "minLength": 8, "examples": ["crafty"], "title": "Password", },