diff --git a/docs/content/en/docs-dev/user-guide/managing-controlplane/configuration-reference.md b/docs/content/en/docs-dev/user-guide/managing-controlplane/configuration-reference.md index 72a2f10b0c..0554faa006 100644 --- a/docs/content/en/docs-dev/user-guide/managing-controlplane/configuration-reference.md +++ b/docs/content/en/docs-dev/user-guide/managing-controlplane/configuration-reference.md @@ -165,12 +165,12 @@ Must be one of the following objects: | Field | Type | Description | Required | |-|-|-|-| -| ClientId | string | The client id string of OpenID Connect oauth app. | Yes | -| ClientSecret | string | The client secret string of OpenID Connect oauth app. | Yes | -| Issuer | string | The address of OpenID Connect service. | Yes | -| RedirectUri | string | The address of the redirect URI. | Yes | -| AuthorizationEndpoint | string | The address of the authorization endpoint. | No | -| TokenEndpoint | string | The address of the token endpoint. | No | -| UserInfoEndpoint | string | The address of the user info endpoint. | No | -| ProxyUrl | string | The address of the proxy used while communicating with the OpenID Connect service. | No | -| Scopes | []string | Scopes to request from the OpenID Connect service. Default is `openid`. Some providers may require other scopes. | No | +| clientId | string | The client id string of OpenID Connect oauth app. | Yes | +| clientSecret | string | The client secret string of OpenID Connect oauth app. | Yes | +| issuer | string | The address of OpenID Connect service. | Yes | +| redirectUri | string | The address of the redirect URI. | Yes | +| authorizationEndpoint | string | The address of the authorization endpoint. | No | +| tokenEndpoint | string | The address of the token endpoint. | No | +| userInfoEndpoint | string | The address of the user info endpoint. | No | +| proxyUrl | string | The address of the proxy used while communicating with the OpenID Connect service. | No | +| scopes | []string | Scopes to request from the OpenID Connect service. Default is `openid`. Some providers may require other scopes. | No | diff --git a/pkg/app/server/httpapi/callback_test.go b/pkg/app/server/httpapi/callback_test.go index f2d31191a4..0516f446cb 100644 --- a/pkg/app/server/httpapi/callback_test.go +++ b/pkg/app/server/httpapi/callback_test.go @@ -24,6 +24,7 @@ import ( ) func TestParseProjectAndState(t *testing.T) { + t.Parallel() tests := []struct { name string formValues url.Values @@ -79,6 +80,7 @@ func TestParseProjectAndState(t *testing.T) { for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { + t.Parallel() req := httptest.NewRequest(http.MethodGet, "/", nil) req.Form = tt.formValues