Added menu click redirect link

This commit is contained in:
YourFriendlyNeighborhoodDealer 2018-12-05 15:56:37 +01:00
parent 27072e8b21
commit 6311b20168

View file

@ -198,6 +198,11 @@ app.get('/sanityCheck', function(req, res) {
res.end('Hello guys');
});
app.get('/menuClick', function(req, res) {
res.redirect("/");
res.end();
});
app.route('/badtestsender').post(function(req, res, next) {
var fstream;
req.pipe(req.busboy);