feat(server): adds ASP .NET Core identity framework authentication

This commit is contained in:
2026-07-19 00:41:53 +02:00
parent 574b24c288
commit b741a905f5
5 changed files with 204 additions and 6 deletions
@@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using ReverseLlama.Server.Models;
namespace ReverseLlama.Server.Data;
internal sealed class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
: base(options)
{
}
}