From 4ae915628435cc88aa22b050f672c7214e69867f Mon Sep 17 00:00:00 2001 From: carlos-burelo Date: Tue, 9 Nov 2021 10:55:51 -0600 Subject: [PATCH] Removing some comments --- src/routes/api.routes.js | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/routes/api.routes.js b/src/routes/api.routes.js index e2f0b50..81b015f 100644 --- a/src/routes/api.routes.js +++ b/src/routes/api.routes.js @@ -56,18 +56,4 @@ routes.get('/letters', (req, res) => { routes.get('/by', (req, res) => { getBy(req, res); }); -// routes.get('/category/:category/gender/:gender', (req, res) => { -// getBy(req, res, true); -// }); -// routes.get('/gender/:gender', (req, res) => { -// getBy(req, res); -// }); - -// routes.get('/letter/:letter', (req, res) => { -// getBy(req, res); -// }); - -// routes.get('/category/:category', (req, res) => { -// getBy(req, res); -// }); export default routes;