Browse Source

Fix openidConnect source regression from #16544 (#16759)

Unfortunately there is bug in #16544 meaning that openid connects aren't
being matched properly as the capitalisation in that PR is incorrect.

This PR changes the capitalisation back to what is expected.

Signed-off-by: Andrew Thornton <art27@cantab.net>
tags/v1.16.0-rc1
zeripath 2 years ago
parent
commit
7f85610942
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      services/auth/source/oauth2/providers_openid.go

+ 1
- 1
services/auth/source/oauth2/providers_openid.go View File

@@ -18,7 +18,7 @@ type OpenIDProvider struct {

// Name provides the technical name for this provider
func (o *OpenIDProvider) Name() string {
return "openidconnect"
return "openidConnect"
}

// DisplayName returns the friendly name for this provider

Loading…
Cancel
Save