Minor style change on foursquare venue detail, and removed old images
This commit is contained in:
1
app.js
1
app.js
@ -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' }));
|
||||
|
||||
|
Reference in New Issue
Block a user