From 788cca56201fba7c13abef48862c395cdfb25541 Mon Sep 17 00:00:00 2001 From: mesutoezdil Date: Wed, 8 Jul 2026 20:50:09 +0200 Subject: [PATCH] docs: fix wrong file paths in OIDC auth architecture doc Signed-off-by: mesutoezdil --- docs/OIDC_PROXY_AUTH_ARCHITECTURE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/OIDC_PROXY_AUTH_ARCHITECTURE.md b/docs/OIDC_PROXY_AUTH_ARCHITECTURE.md index 78f788f97..e67404b91 100644 --- a/docs/OIDC_PROXY_AUTH_ARCHITECTURE.md +++ b/docs/OIDC_PROXY_AUTH_ARCHITECTURE.md @@ -90,8 +90,8 @@ flowchart TB | Component | File | Purpose | |-----------|------|---------| -| **ProxyAuthenticator** | `go/internal/httpserver/auth/proxy_authn.go` | Extract user identity from JWT Bearer tokens, pass through raw claims | -| **CurrentUserHandler** | `go/internal/httpserver/handlers/current_user.go` | Returns raw JWT claims (or `{"sub": userId}` for non-JWT auth) | +| **ProxyAuthenticator** | `go/core/internal/httpserver/auth/proxy_authn.go` | Extract user identity from JWT Bearer tokens, pass through raw claims | +| **CurrentUserHandler** | `go/core/internal/httpserver/handlers/current_user.go` | Returns raw JWT claims (or `{"sub": userId}` for non-JWT auth) | ## Authentication Modes