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/Pages/Auth.cshtml.cs | 3 ++- VPNAuth.Server/Pages/Dashboard.cshtml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'VPNAuth.Server/Pages') diff --git a/VPNAuth.Server/Pages/Auth.cshtml.cs b/VPNAuth.Server/Pages/Auth.cshtml.cs index bdcbc59..1f75492 100644 --- a/VPNAuth.Server/Pages/Auth.cshtml.cs +++ b/VPNAuth.Server/Pages/Auth.cshtml.cs @@ -44,7 +44,8 @@ public class Auth : PageModel Scopes = Request.Query["scope"].ToString().Split(" ").ToList(), CodeChallenge = Request.Query["code_challenge"]!, CodeChallengeMethod = Request.Query["code_challenge_method"]!, - Accepted = false + Accepted = false, + Username = User!.Username! }); db.SaveChanges(); } diff --git a/VPNAuth.Server/Pages/Dashboard.cshtml b/VPNAuth.Server/Pages/Dashboard.cshtml index 38f9c7e..78f6846 100644 --- a/VPNAuth.Server/Pages/Dashboard.cshtml +++ b/VPNAuth.Server/Pages/Dashboard.cshtml @@ -35,7 +35,7 @@

VPNAuth

Hey, @configUser.Username!

User settings

-
+ -- cgit v1.2.3