Started testing tag component

This commit is contained in:
Masu-Baumgartner
2024-10-09 16:25:33 +02:00
parent 19afc5d055
commit 13daa3cbac
2 changed files with 5 additions and 0 deletions

View File

@@ -16,4 +16,6 @@ public class CreateUserRequest
[MinLength(8, ErrorMessage = "Your password needs to be at least 8 characters long")]
[MaxLength(256, ErrorMessage = "Your password should not exceed the length of 256 characters")]
public string Password { get; set; }
public string PermissionsJson { get; set; } = "[]";
}