mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-06 18:10:16 +00:00
Adding HTTP "PATCH" support to API calls
This commit is contained in:
parent
3559f1faea
commit
1acc7dc114
|
@ -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,
|
||||
|
|
|
@ -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" {
|
||||
|
|
Loading…
Reference in New Issue
Block a user