From 85574e54c6b5a13eff5d8dce00e54a28a35c9ca6 Mon Sep 17 00:00:00 2001 From: Livio Amstutz Date: Mon, 7 Sep 2020 12:21:38 +0200 Subject: [PATCH] Update pkg/oidc/authorization.go Co-authored-by: Silvan --- pkg/oidc/authorization.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/oidc/authorization.go b/pkg/oidc/authorization.go index a4157d3..3398f51 100644 --- a/pkg/oidc/authorization.go +++ b/pkg/oidc/authorization.go @@ -59,7 +59,7 @@ const ( //PromptConsent (`consent`) directs the Authorization Server to prompt the End-User for consent (of sharing information). PromptConsent Prompt = "consent" - //PromptSelectAccount (``) directs the Authorization Server to prompt the End-User to select a user account (to enable multi user / session switching) + //PromptSelectAccount (`select_account `) directs the Authorization Server to prompt the End-User to select a user account (to enable multi user / session switching) PromptSelectAccount Prompt = "select_account" //GrantTypeCode defines the grant_type `authorization_code` used for the Token Request in the Authorization Code Flow