(client fosite.Client)
| 578 | } |
| 579 | |
| 580 | func AccessTokenStrategySource(client fosite.Client) config.AccessTokenStrategySource { |
| 581 | if source, ok := client.(config.AccessTokenStrategySource); ok { |
| 582 | return source |
| 583 | } |
| 584 | return nil |
| 585 | } |
| 586 | |
| 587 | func (c *Client) CookieSuffix() string { |
| 588 | return CookieSuffix(c) |
no outgoing calls
no test coverage detected