Merge pull request #382 from gOOvER/goover

Change username length to 6
This commit is contained in:
Masu Baumgartner 2024-04-12 10:42:55 +02:00 committed by GitHub
commit c5fef04d06
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,7 +5,7 @@ namespace Moonlight.Core.Models.Forms;
public class RegisterForm
{
[Required(ErrorMessage = "You need to provide an username")]
[MinLength(7, ErrorMessage = "The username is too short")]
[MinLength(6, ErrorMessage = "The username is too short")]
[MaxLength(20, ErrorMessage = "The username cannot be longer than 20 characters")]
[RegularExpression("^[a-z][a-z0-9]*$", ErrorMessage = "Usernames can only contain lowercase characters and numbers and should not start with a number")]
public string Username { get; set; }