db: Client() should not return the secret

It's never used by downstream code, and besides, it's not really the
secret but a Hash of the secret.
This commit is contained in:
Bobby Rullo 2016-04-18 16:52:40 -07:00
parent 158bfa5ed7
commit e7141336bc

View file

@ -78,8 +78,7 @@ type clientModel struct {
func (m *clientModel) Client() (*client.Client, error) {
ci := client.Client{
Credentials: oidc.ClientCredentials{
ID: m.ID,
Secret: string(m.Secret),
ID: m.ID,
},
Admin: m.DexAdmin,
}