No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
server.js
|
|
@ -21,14 +21,14 @@ router.get("/timeframe",function(req, res) { |
|
|
.send(JSON.stringify(response)) |
|
|
.send(JSON.stringify(response)) |
|
|
.end(); |
|
|
.end(); |
|
|
}); |
|
|
}); |
|
|
/* |
|
|
|
|
|
router.get("/participants",function(req, res) { |
|
|
router.get("/participants",function(req, res) { |
|
|
var response = [ "Sebastien", "Nicolas" ]; |
|
|
var response = [ "Sebastien", "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); |
|
|
|
|
|
|
|
|
app.use("*",function(req, res) { |
|
|
app.use("*",function(req, res) { |
|
|
|