From f29bc6f6c2c9ac6692c9504825fc518c0f1ed001 Mon Sep 17 00:00:00 2001 From: Sachin Maheshwari Date: Tue, 7 May 2019 17:03:39 +0530 Subject: [PATCH] adding '/' endpoint parallel to 'list'. --- src/routes.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/routes.js b/src/routes.js index 15d287d..cf1df2e 100644 --- a/src/routes.js +++ b/src/routes.js @@ -41,4 +41,10 @@ module.exports = { method: 'health', }, }, + '/': { + get: { + controller: 'NotificationController', + method: 'listNotifications', + }, + }, };