Skip to content
Snippets Groups Projects
Commit d3811907 authored by ale's avatar ale
Browse files

Allow all headers in CORS requests

Temporary workaround if we do not want to maintain a whitelist.
parent b2b75382
No related branches found
No related tags found
No related merge requests found
......@@ -445,6 +445,7 @@ func (h *Server) Handler() http.Handler {
// Add CORS headers on the main SSO API endpoint.
c := cors.New(cors.Options{
AllowedOrigins: h.allowedOrigins,
AllowedHeaders: []string{"*"},
AllowCredentials: true,
MaxAge: 86400,
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment