summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/index.js11
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/index.js b/lib/index.js
index 45def38..2ccf812 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -96,7 +96,6 @@ site.route = function(){
})
}
)
-
app.get("/api/thread/:id", function(req, res){
bucky.ensureThread,
bucky.ensureKeywordForThread,
@@ -113,4 +112,14 @@ site.route = function(){
})
app.post("/api/thread/:id", function(req, res){
})
+ app.post("/api/thread/:id/comment", function(req, res){
+ })
+ app.delete("/api/thread/:id", function(req, res){
+ })
+
+ app.put("/api/comment/:id", function(req, res){
+ })
+ app.delete("/api/thread/:id", function(req, res){
+ })
+
}