fix build permission errors
All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 8s

This commit is contained in:
2026-04-22 19:55:47 -05:00
parent 9d5bae339e
commit 89942f0731
7 changed files with 408 additions and 18 deletions

View File

@@ -7,7 +7,7 @@ public class User : IdentityUser {
public DateTime CreatedAt { get; set; }
public List<string> Permissions { get; set; } = [ Permission.SensitiveData_Read, Permission.SensitiveData_Modify ]; // just seeding these here initially
public List<string>? Permissions { get; set; }
// properties inherited from IdentityUser:
/*