Commit 60d0115
Changed files (1)
pkg
web
pkg/web/well_known.go
@@ -5,7 +5,6 @@ import (
_ "embed"
"encoding/json"
"encoding/pem"
- "fmt"
"net/http"
"text/template"
@@ -20,7 +19,6 @@ var (
)
func (h *HttpContext) WellKnown(w http.ResponseWriter, r *http.Request) {
- fmt.Println(r.URL.Path)
if r.URL.Path == "/.well-known/openid-configuration" {
w.Header().Set("Content-Type", "application/json")
tmpl.Execute(w, struct{ Issuer string }{Issuer: h.issuer})