From 6a9657a10dc5ef3c4dfddf222284eec6c933ac83 Mon Sep 17 00:00:00 2001 From: Tim Date: Sat, 19 Apr 2025 19:33:04 +0200 Subject: Add OIDC user-information endpoint --- VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs') diff --git a/VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs b/VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs index e4643df..4dcce6b 100644 --- a/VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs +++ b/VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs @@ -38,6 +38,10 @@ namespace VPNAuth.Server.Migrations .IsRequired() .HasColumnType("TEXT"); + b.Property("Username") + .IsRequired() + .HasColumnType("TEXT"); + b.HasKey("Id"); b.ToTable("AccessTokens"); @@ -78,6 +82,10 @@ namespace VPNAuth.Server.Migrations b.Property("State") .HasColumnType("TEXT"); + b.Property("Username") + .IsRequired() + .HasColumnType("TEXT"); + b.HasKey("Id"); b.ToTable("AuthRequests"); -- cgit v1.2.3