Commit 9c403aba authored by Bobby Rullo's avatar Bobby Rullo

fix dexctl

parent 399b15ab
......@@ -36,7 +36,12 @@ func (d *dbDriver) NewClient(meta oidc.ClientMetadata) (*oidc.ClientCredentials,
return nil, err
}
return d.ciRepo.New(clientID, meta, false)
return d.ciRepo.New(client.Client{
Credentials: oidc.ClientCredentials{
ID: clientID,
},
Metadata: meta,
})
}
func (d *dbDriver) ConnectorConfigs() ([]connector.ConnectorConfig, error) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment