diff --git a/cmd/auth-rest/startcmd/start.go b/cmd/auth-rest/startcmd/start.go index 56e43e2..35d7f88 100644 --- a/cmd/auth-rest/startcmd/start.go +++ b/cmd/auth-rest/startcmd/start.go @@ -787,7 +787,7 @@ func constructCORSHandler(handler http.Handler) http.Handler { return cors.New( cors.Options{ AllowedMethods: []string{http.MethodGet, http.MethodPost}, - AllowedHeaders: []string{"Origin", "Accept", "Content-Type", "X-Requested-With", "Authorization"}, + AllowedHeaders: []string{"*"}, }, ).Handler(handler) }