changed on server

This commit is contained in:
Dobie Wollert
2013-07-19 02:38:07 -04:00
parent 4ca472f2cb
commit 1c2ba2737d
9 changed files with 69 additions and 12 deletions

View File

@ -16,7 +16,7 @@ module.exports = function(passport, config) {
passport.use(new GoogleStrategy({
clientID: config.auth.clientId,
clientSecret: config.auth.clientSecret,
callbackURL: config.auth.callback
// callbackURL: config.auth.callback
},
function(accessToken, refreshToken, profile, done) {
console.log(profile);
@ -52,4 +52,4 @@ module.exports = function(passport, config) {
});
});
}));
}
}