aboutsummaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2016-09-09 14:30:04 +0200
committerNoah Loomans <noahloomans@gmail.com>2016-09-09 14:30:04 +0200
commit29f35540bac3f3c8ad0043d03758142267bcef9a (patch)
tree36fcd51844399aec80f2130b563956f8389b9823 /app.js
parent06e00475724bbcf0c99a1c8a430b97103822360b (diff)
send data directly
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 af0092a..ad3df8e 100644
--- a/app.js
+++ b/app.js
@@ -6,7 +6,6 @@ const bodyParser = require('body-parser')
const routes = require('./routes/index')
const meetingpointProxy = require('./routes/meetingpointProxy')
-const getUserIndex = require('./routes/getUserIndex')
const hello = require('./routes/hello')
const app = express()
@@ -23,7 +22,6 @@ app.use(express.static(path.join(__dirname, 'public')))
app.use('/', routes)
app.use('/meetingpointProxy', meetingpointProxy)
-app.use('/getUserIndex', getUserIndex)
app.use('/hello', hello)
// catch 404 and forward to error handler