New github api page with a repo information example

Bootstrap-Well ios7 style
This commit is contained in:
Sahat Yalkabov
2013-12-07 21:44:26 -05:00
parent 717628834e
commit d7f19c483f
7 changed files with 124 additions and 17 deletions

4
app.js
View File

@ -65,12 +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/github', passportConf.ensureAuthenticated, 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('/api/twitter', passportConf.ensureAuthenticated, api.getTwitter);
app.get('/contact', contact.getContact);
app.post('/contact', contact.postContact);