|
|
@ -22,12 +22,14 @@ router.get("/timeframe",function(req, res) { |
|
|
.end(); |
|
|
.end(); |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
/* |
|
|
router.get("/participants",function(req, res) { |
|
|
router.get("/participants",function(req, res) { |
|
|
var response = [ "Mark", "Nicolas" ]; |
|
|
var response = [ "Mark", "Nicolas" ]; |
|
|
res.type('application/json') |
|
|
res.type('application/json') |
|
|
.send(JSON.stringify(response)) |
|
|
.send(JSON.stringify(response)) |
|
|
.end(); |
|
|
.end(); |
|
|
}); |
|
|
}); |
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
app.use("/",router); |
|
|
app.use("/",router); |
|
|
|
|
|
|
|
|
|