mirror of
https://github.com/davidallendj/opaal.git
synced 2025-12-20 03:27:02 -07:00
Added flag to forward ID token
This commit is contained in:
parent
cfba9e4bd0
commit
53de1ca726
1 changed files with 2 additions and 0 deletions
|
|
@ -22,6 +22,7 @@ type Options struct {
|
||||||
FlowType string `yaml:"flow"`
|
FlowType string `yaml:"flow"`
|
||||||
CachePath string `yaml:"cache"`
|
CachePath string `yaml:"cache"`
|
||||||
LocalOnly bool `yaml:"local-only"`
|
LocalOnly bool `yaml:"local-only"`
|
||||||
|
ForwardToken bool `yaml:"forward-token"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type RequestUrls struct {
|
type RequestUrls struct {
|
||||||
|
|
@ -67,6 +68,7 @@ func NewConfig() Config {
|
||||||
CachePath: "opaal.db",
|
CachePath: "opaal.db",
|
||||||
FlowType: "authorization_code",
|
FlowType: "authorization_code",
|
||||||
LocalOnly: false,
|
LocalOnly: false,
|
||||||
|
ForwardToken: false,
|
||||||
},
|
},
|
||||||
Authentication: Authentication{},
|
Authentication: Authentication{},
|
||||||
Authorization: Authorization{},
|
Authorization: Authorization{},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue