fix: allow all methods in CORS

This commit is contained in:
Sam 2023-05-25 00:33:54 +02:00
parent 8f8daaa331
commit 5bac691d15
No known key found for this signature in database
GPG Key ID: B4EF20DDE721CAA1
1 changed files with 3 additions and 2 deletions

View File

@ -51,8 +51,9 @@ func New() (*Server, error) {
s.Router.Use(middleware.Recoverer) s.Router.Use(middleware.Recoverer)
// add CORS // add CORS
s.Router.Use(cors.Handler(cors.Options{ s.Router.Use(cors.Handler(cors.Options{
AllowedOrigins: []string{"https://*", "http://*"}, AllowedOrigins: []string{"https://*", "http://*"},
AllowedMethods: []string{"HEAD", "GET"}, // Allow all methods normally used by the API
AllowedMethods: []string{"HEAD", "GET", "POST", "PATCH", "DELETE"},
AllowedHeaders: []string{"Accept", "Authorization", "Content-Type"}, AllowedHeaders: []string{"Accept", "Authorization", "Content-Type"},
AllowCredentials: false, AllowCredentials: false,
MaxAge: 300, MaxAge: 300,