redirect from frontend to frontend/

pull/1097/merge
Peter 'Pita' Martischka 2012-10-27 16:41:17 +01:00
parent 06bebf257e
commit cc7ddddd2f
1 changed files with 4 additions and 0 deletions

View File

@ -13,4 +13,8 @@ exports.expressCreateServer = function (hook_name, args, cb) {
res.sendfile(filePath); res.sendfile(filePath);
}); });
args.app.get('/tests/frontend', function (req, res) {
res.redirect('/tests/frontend/');
});
} }