mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
23 lines
570 B
Go
23 lines
570 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
|
|
contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model"
|
|
)
|
|
|
|
func openapi3(c *contextmodel.ReqContext) {
|
|
data := map[string]any{
|
|
"Nonce": c.RequestNonce,
|
|
}
|
|
|
|
// Add CSP for unpkg.com to allow loading of Swagger UI assets
|
|
if existingCSP := c.Resp.Header().Get("Content-Security-Policy"); existingCSP != "" {
|
|
newCSP := strings.Replace(existingCSP, "style-src", "style-src https://unpkg.com/", 1)
|
|
c.Resp.Header().Set("Content-Security-Policy", newCSP)
|
|
}
|
|
|
|
c.HTML(http.StatusOK, "openapi3", data)
|
|
}
|