Update also to a list of empty redirect URIs and Peers
This commit is contained in:
parent
9d1ec6c36b
commit
281ec27118
1 changed files with 2 additions and 3 deletions
|
@ -86,13 +86,12 @@ func (d dexAPI) UpdateClient(ctx context.Context, req *api.UpdateClientReq) (*ap
|
|||
}
|
||||
|
||||
err := d.s.UpdateClient(req.Id, func(old storage.Client) (storage.Client, error) {
|
||||
if req.RedirectUris != nil && len(req.RedirectUris) > 0 {
|
||||
if req.RedirectUris != nil {
|
||||
old.RedirectURIs = req.RedirectUris
|
||||
}
|
||||
if req.TrustedPeers != nil && len(req.TrustedPeers) > 0 {
|
||||
if req.TrustedPeers != nil {
|
||||
old.TrustedPeers = req.TrustedPeers
|
||||
}
|
||||
old.Public = req.Public
|
||||
if req.Name != "" {
|
||||
old.Name = req.Name
|
||||
}
|
||||
|
|
Reference in a new issue