Remove max password length

This commit is contained in:
amcmanu3 2024-02-19 19:19:30 -05:00
parent 166e3c5088
commit d168a7f8f0

View File

@ -17,7 +17,7 @@ login_schema = {
"minLength": 4,
"pattern": "^[a-z0-9_]+$",
},
"password": {"type": "string", "maxLength": 20, "minLength": 4},
"password": {"type": "string", "minLength": 4},
},
"required": ["username", "password"],
"additionalProperties": False,