File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ authorization:
33 server : http://dex:5556/
44 authorizationProxyEnabled : true
55 serverMetadataProxyEnabled : true
6- dynamicClientRegistrationEnabled : true
6+ dynamicClientRegistration :
7+ enabled : true
8+ publicClient : true
79dexGRPCClient :
810 addr : dex:5557
911proxy :
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ const DynamicClientRegistrationPath = "/oauth/register"
1818
1919type ClientInformation struct {
2020 ClientID string `json:"client_id"`
21- ClientSecret string `json:"client_secret"`
22- ClientSecretExpiresAt int64 `json:"client_secret_expires_at"`
21+ ClientSecret string `json:"client_secret,omitempty "`
22+ ClientSecretExpiresAt int64 `json:"client_secret_expires_at,omitempty "`
2323 ClientName string `json:"client_name,omitempty"`
2424 RedirectURIs []string `json:"redirect_uris"`
2525 LogoURI string `json:"logo_uri,omitempty"`
You can’t perform that action at this time.
0 commit comments