A container registry that uses the AT Protocol for manifest storage and S3 for blob storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

jwks

+8
+8
cmd/appview/serve.go
··· 385 385 config := oauthApp.GetConfig() 386 386 metadata := config.ClientMetadata() 387 387 388 + // For confidential clients, ensure JWKS is included 389 + // The indigo library should populate this automatically, but we explicitly set it here 390 + // to be defensive and ensure it's always present for confidential clients 391 + if config.IsConfidential() && metadata.JWKS == nil { 392 + jwks := config.PublicJWKS() 393 + metadata.JWKS = &jwks 394 + } 395 + 388 396 // Convert indigo's metadata to map so we can add custom fields 389 397 metadataBytes, err := json.Marshal(metadata) 390 398 if err != nil {