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