diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-09-06 02:22:28 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-09-06 02:22:28 -0400 |
| commit | 8e25a37aced0399ad13e2c184c618119ec3da16d (patch) | |
| tree | fea00aa951b5468e886e15a26774a7ea7da1d737 /lib/index.js | |
| parent | f936c30cbcf9c5e1e5e77929f37a28603ab7c73a (diff) | |
beginning to port string formatting code..
Diffstat (limited to 'lib/index.js')
| -rw-r--r-- | lib/index.js | 11 |
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){ + }) + } |
