Adding HTTP "PATCH" support to API calls

This commit is contained in:
Michael Vallaly 2022-05-10 15:56:56 -05:00
parent 3559f1faea
commit 1acc7dc114
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ func routes(conf *config.Config) Routes {
route(
"/",
index,
middlewares.UseBefore(middleware.Methods("GET", "POST"))...,
middlewares.UseBefore(middleware.Methods("GET", "PATCH", "POST"))...,
),
route(
staticPath,

View File

@ -8,7 +8,7 @@ import (
func Cors(inner http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Access-Control-Allow-Origin", "*")
w.Header().Set("Access-Control-Allow-Methods", "POST, GET, OPTIONS")
w.Header().Set("Access-Control-Allow-Methods", "PATCH, POST, GET, OPTIONS")
w.Header().Set("Access-Control-Allow-Headers", "Accept, Content-Type, Content-Length, Accept-Encoding, Authorization")
if r.Method != "OPTIONS" {