From ea2d0b6470df3c698e703e1978f6ecc5ef42416b Mon Sep 17 00:00:00 2001 From: Denis Arh Date: Wed, 24 Mar 2021 21:09:59 +0100 Subject: [PATCH] Fix auth options typo --- pkg/options/auth.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/options/auth.yaml b/pkg/options/auth.yaml index f840a6afc..17ddf94de 100644 --- a/pkg/options/auth.yaml +++ b/pkg/options/auth.yaml @@ -30,7 +30,7 @@ props: description: Experation time for the auth JWT tokens. - name: externalRedirectURL - default: guestBaseURL() + "/auth/external/{provider}/callback" + default: guessBaseURL() + "/auth/external/{provider}/callback" description: |- Redirect URL to be sent with OAuth2 authentication request to provider @@ -48,7 +48,7 @@ props: ==== - name: baseURL - default: guestBaseURL() + "/auth" + default: guessBaseURL() + "/auth" description: |- Frontend base URL. Must be an absolute URL @@ -63,13 +63,13 @@ props: Session cookie path - name: sessionCookieDomain - default: guestHostname() + default: guessHostname() description: |- Session cookie domain - name: sessionCookieSecure type: bool - default: strings.HasPrefix(guestBaseURL(), "https://") + default: strings.HasPrefix(guessBaseURL(), "https://") description: |- Defaults to true when HTTPS is used.