Add DELETE to acceptable cors methods

This commit is contained in:
stuart nelson 2017-01-17 10:42:29 +01:00
parent 67fc563fe2
commit 83e496f040
1 changed files with 1 additions and 1 deletions

2
api.go
View File

@ -54,7 +54,7 @@ func init() {
var corsHeaders = map[string]string{
"Access-Control-Allow-Headers": "Accept, Authorization, Content-Type, Origin",
"Access-Control-Allow-Methods": "GET, OPTIONS",
"Access-Control-Allow-Methods": "GET, DELETE, OPTIONS",
"Access-Control-Allow-Origin": "*",
"Access-Control-Expose-Headers": "Date",
}