Login done.

This commit is contained in:
Fergal Moran
2023-12-01 18:27:54 +00:00
parent 117f83ea8e
commit b2e98ea716
10 changed files with 310 additions and 89 deletions

View File

@@ -1,9 +1,7 @@
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
namespace Ferglie.Api.Data
{
public class ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : IdentityDbContext<ApplicationUser>(options)
{
}
namespace Ferglie.Api.Data {
public class ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
: IdentityDbContext<ApplicationUser>(options) { }
}