mirror of
https://github.com/byo-software/steam-openid-connect-provider.git
synced 2025-01-10 10:26:23 +00:00
16 lines
461 B
C#
16 lines
461 B
C#
|
using Microsoft.AspNetCore.Identity;
|
|||
|
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
|||
|
namespace SteamOpenIdConnectProxy
|
|||
|
{
|
|||
|
// This is completely in-memory, we do not need a persistent store.
|
|||
|
public class AppInMemoryDbContext : IdentityDbContext<IdentityUser>
|
|||
|
{
|
|||
|
public AppInMemoryDbContext(DbContextOptions<AppInMemoryDbContext> options)
|
|||
|
: base(options)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|