Merge branch 'master' into 142993479-tags

This commit is contained in:
Belén Curcio
2017-05-15 16:55:47 -03:00
committed by GitHub
44 changed files with 1206 additions and 817 deletions
@@ -15,6 +15,6 @@ module.exports = (router) => {
router.get('/api/v1/auth/facebook/callback', (req, res, next) => {
// Perform the facebook login flow and pass the data back through the opener.
passport.authenticate('facebook', HandleAuthPopupCallback(req, res, next))(req, res, next);
passport.authenticate('facebook', {session: false}, HandleAuthPopupCallback(req, res, next))(req, res, next);
});
};