diff options
author | Marvin Borner | 2019-01-26 20:36:31 +0100 |
---|---|---|
committer | Marvin Borner | 2019-01-26 20:36:31 +0100 |
commit | 31d6e5e9a619d5680001b84c5131a7b5b151ca29 (patch) | |
tree | df1aedaf3a579817bd1b06eb935f868b652e99b5 /src/routes.js | |
parent | 677689257a38cb8b8cf06a5c8d4ad2398381e41d (diff) |
Cleaned up code for deployment
Diffstat (limited to 'src/routes.js')
-rw-r--r-- | src/routes.js | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/routes.js b/src/routes.js index c6590da..ef00e68 100644 --- a/src/routes.js +++ b/src/routes.js @@ -9,28 +9,4 @@ routes.get('/', (req, res) => { res.render('index'); }); -/** - * GET /list - * - * This is a sample route demonstrating - * a simple approach to error handling and testing - * the global error handler. You most certainly want to - * create different/better error handlers depending on - * your use case. - */ -routes.get('/list', (req, res, next) => { - const {title} = req.query; - - if (title == null || title === '') { - // You probably want to set the response HTTP status to 400 Bad Request - // or 422 Unprocessable Entity instead of the default 500 of - // the global error handler (e.g check out https://github.com/kbariotis/throw.js). - // This is just for demo purposes. - next(new Error('The "title" parameter is required')); - return; - } - - res.render('index', {title}); -}); - export default routes; |