Add ASP.NET Identity (cookie auth) and role seeding

This commit is contained in:
2026-06-11 18:26:34 +00:00
parent 824a27520d
commit 8a7d01ac9e
9 changed files with 815 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
using Microsoft.AspNetCore.Identity;
namespace backend.Auth;
public class ApplicationUser : IdentityUser<Guid>
{
}