aboutsummaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'app.js')
-rw-r--r--app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app.js b/app.js
index 934429d..c0a0b35 100644
--- a/app.js
+++ b/app.js
@@ -6,7 +6,7 @@ const bodyParser = require('body-parser')
const compression = require('compression')
const routes = require('./routes/index')
-const meetingpointProxy = require('./routes/meetingpointProxy')
+const getSchedule = require('./routes/getSchedule')
const manifest = require('./routes/manifest')
const app = express()
@@ -26,7 +26,7 @@ app.use('/manifest.webmanifest', manifest)
app.use(express.static(path.join(__dirname, 'public')))
app.use('/', routes)
-app.use('/meetingpointProxy', meetingpointProxy)
+app.use('/get', getSchedule)
// catch 404 and forward to error handler
app.use(function (req, res, next) {