mirror of
https://github.com/davidallendj/opaal.git
synced 2025-12-20 03:27:02 -07:00
Added refresh token flow
This commit is contained in:
parent
6938037a3c
commit
16ec8fc422
4 changed files with 56 additions and 2 deletions
|
|
@ -24,6 +24,7 @@ type Options struct {
|
|||
CachePath string `yaml:"cache"`
|
||||
CacheOnly bool `yaml:"cache-only"`
|
||||
TokenForwarding bool `yaml:"token-forwarding"`
|
||||
Refresh bool `yaml:"refresh"`
|
||||
Verbose bool `yaml:"verbose"`
|
||||
}
|
||||
|
||||
|
|
@ -72,6 +73,7 @@ func NewConfig() Config {
|
|||
FlowType: "authorization_code",
|
||||
CacheOnly: false,
|
||||
TokenForwarding: false,
|
||||
Refresh: true,
|
||||
Verbose: false,
|
||||
},
|
||||
Authentication: Authentication{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue