Authn: Fix password client fallthrough (#63244)

* fix password client fallthrough

* fix grafana client String
This commit is contained in:
Jo
2023-02-12 14:42:47 +01:00
committed by GitHub
parent 6ca9e5b440
commit 554dc9b97d
4 changed files with 24 additions and 11 deletions

View File

@@ -21,6 +21,10 @@ type Basic struct {
client authn.PasswordClient
}
func (c *Basic) String() string {
return c.Name()
}
func (c *Basic) Name() string {
return authn.ClientBasic
}