Skip to content

Commit 09464f4

Browse files
author
App Generator
committed
Added dummy route for tests
1 parent 0597ef8 commit 09464f4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/routes/users.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,4 +155,11 @@ router.post('/edit', checkToken, function(req, res) {
155155
});
156156
});
157157

158+
// Used for tests (nothing functional)
159+
router.get('/testme', (req, res) => {
160+
161+
res.status(200).json({ success: true, msg: 'all good' });
162+
163+
});
164+
158165
module.exports = router;

0 commit comments

Comments
 (0)