func (c *ConnectionOptionsOIDC) SetScopes(enable bool, scopes ...string) {
    scopeMap := make(map[string]bool)
    for _, scope := range c.Scopes() {
        scopeMap[scope] = true
    }