Feature/Auth: implement user authentication #3

Merged
homeburger merged 48 commits from feature/auth into main 2026-03-22 20:52:22 -05:00
Showing only changes of commit a3a86d4fde - Show all commits

View File

@@ -2,12 +2,12 @@
using agologumApi.Models; using agologumApi.Models;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
public class AppDbContext : DbContext { public class AppDbContext : IdentityDbContext<User> {
public AppDbContext(DbContextOptions<AppDbContext> options) : base(options) { public AppDbContext(DbContextOptions<AppDbContext> options) : base(options) {
} }
public DbSet<User> Users { get; set; }
} }