Fix: add PATCH for CORS
This commit is contained in:
parent
57176b410d
commit
e95547bef1
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ func Start(addr string, secret string) {
|
|||
|
||||
cors := cors.New(cors.Options{
|
||||
AllowedOrigins: []string{"*"},
|
||||
AllowedMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"},
|
||||
AllowedMethods: []string{"GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS"},
|
||||
AllowedHeaders: []string{"Content-Type", "Authorization"},
|
||||
MaxAge: 300,
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue