From 1d2a9826af247883ff8e67b346263e5e2cd49791 Mon Sep 17 00:00:00 2001 From: Wu Cheng-Han Date: Mon, 10 Oct 2016 20:52:31 +0800 Subject: Update to improve history api error and bad request handling --- lib/response.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/response.js') diff --git a/lib/response.js b/lib/response.js index 043f4f7d..fa97f157 100755 --- a/lib/response.js +++ b/lib/response.js @@ -33,6 +33,9 @@ var response = { errorNotFound: function (res) { responseError(res, "404", "Not Found", "oops."); }, + errorBadRequest: function (res) { + responseError(res, "400", "Bad Request", "something not right."); + }, errorInternalError: function (res) { responseError(res, "500", "Internal Error", "wtf."); }, -- cgit v1.2.3