Absolute garbage, trying to forward JWT, bad idea

This commit is contained in:
lumijiez
2025-06-06 22:27:55 +03:00
parent 6c2c846a21
commit 87c4f27de5
23 changed files with 581 additions and 2202 deletions

View File

@@ -20,6 +20,9 @@ public class ApplicationDbContext(DbContextOptions<ApplicationDbContext> options
public DbSet<Address> Addresses { get; set; }
public DbSet<OrderStatus> OrderStatuses { get; set; }
public DbSet<ShippingStatus> ShippingStatuses { get; set; }
public DbSet<User> Users { get; set; }
public DbSet<UserRole> UserRoles { get; set; }
public DbSet<Role> Roles { get; set; }
public DbSet<Category> Categories { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)