diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-06 14:19:56 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-06 14:19:56 -0800 |
commit | 4d46c0631703483c62c90f084aa559f85705ad61 (patch) | |
tree | 2bfaff2a0333fba79146369a735d5a9641d0b028 /system/api/external.go | |
parent | 9bcd849014d8986e72220dc9d8d02888c3dd7103 (diff) |
/*post?s*/ => /*content?s*/ substitution
Diffstat (limited to 'system/api/external.go')
-rw-r--r-- | system/api/external.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/api/external.go b/system/api/external.go index 52510c0..2e9597e 100644 --- a/system/api/external.go +++ b/system/api/external.go @@ -25,7 +25,7 @@ type Trustable interface { AutoApprove(req *http.Request) error } -func externalPostHandler(res http.ResponseWriter, req *http.Request) { +func externalContentHandler(res http.ResponseWriter, req *http.Request) { if req.Method != http.MethodPost { res.WriteHeader(http.StatusMethodNotAllowed) return |