From e15f345964fd6c5eefaa0bbd6b62e29b2d083b3a Mon Sep 17 00:00:00 2001 From: Patrick McDonagh Date: Fri, 22 Jan 2016 14:32:16 -0600 Subject: [PATCH] Fixed allValues function name another find/replace screw up --- www/functions_SQLite.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/functions_SQLite.js b/www/functions_SQLite.js index 4d1a65a..501e10d 100644 --- a/www/functions_SQLite.js +++ b/www/functions_SQLite.js @@ -169,6 +169,6 @@ exports.allTags = function(req, res){ }); }; -exports.allvals = function(req, res){ +exports.allValues = function(req, res){ res.json({status: "error", message: "not implemented"}); };