Minor style change on foursquare venue detail, and removed old images

This commit is contained in:
Sahat Yalkabov
2013-12-04 22:11:09 -05:00
parent ffed158a4e
commit 6794f64a03
2 changed files with 3 additions and 0 deletions

1
app.js
View File

@ -67,6 +67,7 @@ app.get('/auth/facebook/callback', passport.authenticate('facebook', { successRe
app.get('/auth/github', passport.authenticate('github'));
app.get('/auth/github/callback', passport.authenticate('github', { failureRedirect: '/login' }), function(req, res) { res.redirect('/'); });
app.get('/auth/google', passport.authenticate('google', { scope: 'profile email' }));
app.get('/auth/google/callback', passport.authenticate('google', { successRedirect: '/', failureRedirect: '/login' }));