From 53de1ca726707e104a5bcfa298b5813413c5a203 Mon Sep 17 00:00:00 2001 From: "David J. Allen" Date: Tue, 5 Mar 2024 20:45:15 -0700 Subject: [PATCH] Added flag to forward ID token --- internal/config.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/config.go b/internal/config.go index 362f151..f4e6c4e 100644 --- a/internal/config.go +++ b/internal/config.go @@ -22,6 +22,7 @@ type Options struct { FlowType string `yaml:"flow"` CachePath string `yaml:"cache"` LocalOnly bool `yaml:"local-only"` + ForwardToken bool `yaml:"forward-token"` } type RequestUrls struct { @@ -67,6 +68,7 @@ func NewConfig() Config { CachePath: "opaal.db", FlowType: "authorization_code", LocalOnly: false, + ForwardToken: false, }, Authentication: Authentication{}, Authorization: Authorization{},