From ecc399b32a7633272f639ef60ce96119982dd542 Mon Sep 17 00:00:00 2001 From: Joseph Milazzo Date: Sun, 9 May 2021 11:26:22 -0500 Subject: [PATCH] Fixed #204. Raised max password to 32 characters (#205) --- API/DTOs/RegisterDto.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/API/DTOs/RegisterDto.cs b/API/DTOs/RegisterDto.cs index b3b43bf1a..bcc93954f 100644 --- a/API/DTOs/RegisterDto.cs +++ b/API/DTOs/RegisterDto.cs @@ -7,7 +7,7 @@ namespace API.DTOs [Required] public string Username { get; init; } [Required] - [StringLength(16, MinimumLength = 4)] + [StringLength(32, MinimumLength = 4)] public string Password { get; init; } public bool IsAdmin { get; init; } }