feat: add clock skew and option to put userinfo (profile, email, phone, address) into id_token

This commit is contained in:
Livio Amstutz 2020-11-26 15:41:53 +01:00 committed by Unknown
parent 13b14734b9
commit 24120554e5
6 changed files with 61 additions and 13 deletions

View file

@ -184,3 +184,11 @@ func (c *ConfClient) RestrictAdditionalAccessTokenScopes() func(scopes []string)
func (c *ConfClient) IsScopeAllowed(scope string) bool {
return false
}
func (c *ConfClient) UserInfoInIDToken() bool {
return false
}
func (c *ConfClient) ClockSkew() time.Duration {
return 0
}