summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-11-03 01:02:36 -0700
committerSteve Manuel <nilslice@gmail.com>2016-11-03 01:02:36 -0700
commit515473bdcd15e706b2927ff150d2fbee7fa321d3 (patch)
treed0efbea18038c2a9d2fc8c31cc243e0ff8900869
parentfb57a155b09d7db014ac213496d21b4b43d065fe (diff)
renaming handler and path match for api server - post => content
-rw-r--r--system/api/external.go2
-rw-r--r--system/api/server.go6
2 files changed, 4 insertions, 4 deletions
diff --git a/system/api/external.go b/system/api/external.go
index 4a42eb5..c9fb2a7 100644
--- a/system/api/external.go
+++ b/system/api/external.go
@@ -27,7 +27,7 @@ type Mergeable interface {
Approve(req *http.Request) error
}
-func externalPostsHandler(res http.ResponseWriter, req *http.Request) {
+func externalPostHandler(res http.ResponseWriter, req *http.Request) {
if req.Method != http.MethodPost {
res.WriteHeader(http.StatusMethodNotAllowed)
return
diff --git a/system/api/server.go b/system/api/server.go
index 4468394..70add10 100644
--- a/system/api/server.go
+++ b/system/api/server.go
@@ -8,9 +8,9 @@ import (
func Run() {
http.HandleFunc("/api/types", CORS(Record(typesHandler)))
- http.HandleFunc("/api/posts", CORS(Record(postsHandler)))
+ http.HandleFunc("/api/contents", CORS(Record(postsHandler)))
- http.HandleFunc("/api/post", CORS(Record(postHandler)))
+ http.HandleFunc("/api/content", CORS(Record(postHandler)))
- http.HandleFunc("/api/external/posts", CORS(Record(externalPostsHandler)))
+ http.HandleFunc("/api/content/external", CORS(Record(externalPostHandler)))
}