Implement login method 🌱🌱
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
046b668485
commit
0e808cd004
@ -0,0 +1,13 @@
|
||||
|
||||
using Microsoft.AspNetCore.Identity;
|
||||
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace Infrastructure;
|
||||
|
||||
public class ApplicationDbContext : IdentityDbContext<IdentityUser>
|
||||
{
|
||||
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) :
|
||||
base(options)
|
||||
{ }
|
||||
}
|
Binary file not shown.
Loading…
Reference in new issue