Added route to new page.

Added route to Linux builds download page for JS-free users **ONLY**.
This commit is contained in:
alex.ita 2024-01-09 11:14:16 +01:00
parent 391f634d65
commit 0065093ca3

View File

@ -13,6 +13,10 @@ function mainRoutes(router) {
router.get('/stats', function (req, res) {
res.render('stats.ejs');
});
router.get('/linux-builds', function (req, res) {
res.render('linux-builds.ejs');
});
router.get('/ping', function (req, res) {
res.send('OK');