We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4373f7 commit e91c2a9Copy full SHA for e91c2a9
charts/identity/Chart.yaml
@@ -4,7 +4,7 @@ description: A Helm chart for deploying Unikorn's IdP
4
5
type: application
6
7
-version: v0.1.5
8
-appVersion: v0.1.5
+version: v0.1.6
+appVersion: v0.1.6
9
10
icon: https://raw.githubusercontent.com/unikorn-cloud/assets/main/images/logos/dark-on-light/icon.png
pkg/handler/handler.go
@@ -67,6 +67,8 @@ func (h *Handler) setCORS(w http.ResponseWriter) {
67
}
68
69
func (h *Handler) GetWellKnownOpenidConfiguration(w http.ResponseWriter, r *http.Request) {
70
+ h.setCORS(w)
71
+
72
result := &generated.OpenidConfiguration{
73
Issuer: h.options.Host,
74
AuthorizationEndpoint: fmt.Sprintf("%s/oauth2/v2/authorization", h.options.Host),
0 commit comments