From 7658ca5e42fe70c27126a7cd6aae5f981f527cf3 Mon Sep 17 00:00:00 2001 From: jkaplon Date: Wed, 8 Jul 2015 15:20:27 -0400 Subject: [PATCH] add status text; add device name header; closes issue #6 --- server.js | 2 +- views/core.hbs | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/server.js b/server.js index 10f417d..7ff6fd8 100644 --- a/server.js +++ b/server.js @@ -80,7 +80,7 @@ app.get('/core/:id', function(req, res){ var d = new Date(); var coreId = req.params.id; console.log("GET /core/" + coreId + ", " + JSON.stringify(d, 4)); - db.all("SELECT coreId, published_at FROM Alerts WHERE coreId = '" + coreId + "' ORDER BY published_at DESC LIMIT 30;", function(err, rows){ + db.all("SELECT coreId, published_at, status, coreName FROM Alerts WHERE coreId = '" + coreId + "' ORDER BY published_at DESC LIMIT 30;", function(err, rows){ if(err !== null) { console.log(err); } else { diff --git a/views/core.hbs b/views/core.hbs index a0a1d1d..1c52a42 100644 --- a/views/core.hbs +++ b/views/core.hbs @@ -3,8 +3,9 @@

Alerts from a single Particle Core:

@@ -12,6 +13,6 @@ setTimeout( function() { location.reload(); - }, 5000 + }, 10000 );