Skip to content

Commit b283b00

Browse files
make prompt parameter for login optional
Co-authored-by: Christer Edvartsen <[email protected]>
1 parent 1598197 commit b283b00

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

internal/auth/authn/handler.go

+7-2
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,13 @@ func (h *handler) Login(w http.ResponseWriter, r *http.Request) {
7575
Secure: true,
7676
HttpOnly: true,
7777
})
78-
consentUrl := h.oauth2Config.AuthCodeURL(oauthState, oauth2.SetAuthURLParam("prompt", "select_account"))
79-
http.Redirect(w, r, consentUrl, http.StatusFound)
78+
79+
opts := make([]oauth2.AuthCodeOption, 0)
80+
81+
if prompt := r.URL.Query().Get("prompt"); prompt != "" {
82+
opts = append(opts, oauth2.SetAuthURLParam("prompt", prompt))
83+
}
84+
http.Redirect(w, r, h.oauth2Config.AuthCodeURL(oauthState, opts...), http.StatusFound)
8085
}
8186

8287
func (h *handler) Callback(w http.ResponseWriter, r *http.Request) {

0 commit comments

Comments
 (0)