From 717628834e2ec2f040060d1d5292c05dbf2be5da Mon Sep 17 00:00:00 2001 From: Sahat Yalkabov Date: Sat, 7 Dec 2013 19:47:00 -0500 Subject: [PATCH] Routes for the rest of APIs --- app.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app.js b/app.js index 0f461ac0f8..5a79fd21da 100755 --- a/app.js +++ b/app.js @@ -65,6 +65,12 @@ app.get('/api/foursquare', passportConf.ensureAuthenticated, api.getFoursquare); app.get('/api/tumblr', passportConf.ensureAuthenticated, api.getTumblr); app.get('/api/facebook', passportConf.ensureAuthenticated, api.getFacebook); app.get('/api/scraping', api.getScraping); +app.get('/api/github', api.getGithub); +app.get('/api/lastfm', api.getLastfm); +app.get('/api/nyt', api.getNewYorkTimes); +app.get('/api/twilio', api.getTwilio); +app.get('/api/etsy', api.getEtsy); +app.get('/api/twitter', api.getTwitter); app.get('/contact', contact.getContact); app.post('/contact', contact.postContact);