forked from mystiq/dex
fix dexctl
This commit is contained in:
parent
399b15abeb
commit
9c403aba41
1 changed files with 6 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue