]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/commitdiff
Remove commented route
authorJohannes Zellner <johannes@cloudron.io>
Thu, 17 May 2018 13:13:20 +0000 (15:13 +0200)
committerJohannes Zellner <johannes@cloudron.io>
Thu, 17 May 2018 13:13:20 +0000 (15:13 +0200)
server.js

index 5814539384bb327e11f82e802630e505fe79f511..f9dd4f54984f8c580a3d6499fadf2031106a10c2 100755 (executable)
--- a/server.js
+++ b/server.js
@@ -35,10 +35,8 @@ router.get   ('/api/healthcheck', function (req, res) { res.status(200).send();
 // welcome screen in case / does not serve up any file yet
 function welcomePage(req, res, next) {
     if (req.path !== '/') return next();
-
     res.status(200).sendFile(path.join(__dirname, '/frontend/welcome.html'));
 }
-// router.get('/', function (req, res) { res.status(200).sendFile(path.join(__dirname, '/frontend/welcome.html')); });
 
 var rootFolder = path.resolve(__dirname, process.argv[2] || 'files');