login changes

This commit is contained in:
roman
2026-06-10 20:39:52 +02:00
parent 841037013a
commit 43011f0a77
13 changed files with 528 additions and 52 deletions
@@ -10,6 +10,7 @@ public class AppDbContext : DbContext
public DbSet<Reminder> Reminders => Set<Reminder>();
public DbSet<User> Users => Set<User>();
public DbSet<ReminderShare> ReminderShares => Set<ReminderShare>();
public DbSet<PasswordResetToken> PasswordResetTokens => Set<PasswordResetToken>();
protected override void OnModelCreating(ModelBuilder modelBuilder)
{