aboutsummaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2017-05-26 18:47:26 +0200
committerNoah Loomans <noahloomans@gmail.com>2017-05-26 18:47:26 +0200
commit65888ffdcbdd4d663360cd2faa15997b8a1f99c7 (patch)
tree232a0352d053b70a6a15b3d710c3c7d4c243d42b /app.js
parenta6a4ddc10ba1a458b94b13c59a4081e9ce1e5b33 (diff)
Remove /hello page
It not used anymore
Diffstat (limited to 'app.js')
-rw-r--r--app.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/app.js b/app.js
index 4461152..934429d 100644
--- a/app.js
+++ b/app.js
@@ -8,7 +8,6 @@ const compression = require('compression')
const routes = require('./routes/index')
const meetingpointProxy = require('./routes/meetingpointProxy')
const manifest = require('./routes/manifest')
-const hello = require('./routes/hello')
const app = express()
@@ -28,7 +27,6 @@ app.use(express.static(path.join(__dirname, 'public')))
app.use('/', routes)
app.use('/meetingpointProxy', meetingpointProxy)
-app.use('/hello', hello)
// catch 404 and forward to error handler
app.use(function (req, res, next) {