User Name is now set at first login

This commit is contained in:
t.ruspekhofer 2022-03-06 22:12:17 +01:00
parent 435914d79e
commit e5b6fdba39
2 changed files with 8 additions and 3 deletions

View file

@ -8,6 +8,7 @@ namespace Lieb.Models
public int LiebUserId { get; set; }
public ulong DiscordUserId { get; set; }
[Required]
[StringLength(40, ErrorMessage = "Name too long (40 character limit).")]
public string Name { get; set; } = string.Empty;