summaryrefslogtreecommitdiff
path: root/lib/index.js
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-09-06 02:22:28 -0400
committerJules Laplace <jules@okfoc.us>2015-09-06 02:22:28 -0400
commit8e25a37aced0399ad13e2c184c618119ec3da16d (patch)
treefea00aa951b5468e886e15a26774a7ea7da1d737 /lib/index.js
parentf936c30cbcf9c5e1e5e77929f37a28603ab7c73a (diff)
beginning to port string formatting code..
Diffstat (limited to 'lib/index.js')
-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){
+ })
+
}