From 3633fefc80be3abbf84b8193a8c7add6a525cc5c Mon Sep 17 00:00:00 2001 From: Shivam-nagar23 Date: Thu, 3 Apr 2025 18:37:21 +0530 Subject: [PATCH] added comments --- authenticator/oidc/oidc.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/authenticator/oidc/oidc.go b/authenticator/oidc/oidc.go index 1bef8c85c..878acc147 100644 --- a/authenticator/oidc/oidc.go +++ b/authenticator/oidc/oidc.go @@ -44,7 +44,8 @@ const ( GrantTypeAuthorizationCode = "authorization_code" GrantTypeImplicit = "implicit" ResponseTypeCode = "code" - NoUserLocation = "/dashboard/login?err=NO_USER" + // This is being used for both orchestrator and license-manager and gatekeeper to silently handle toast message. + NoUserLocation = "/dashboard/login?err=NO_USER" ) // OIDCConfiguration holds a subset of interested fields from the OIDC configuration spec