mirror of https://github.com/status-im/codimd.git
Merge pull request #1163 from SISheogorath/fix/googleAuth
Add required change for Google+ API deprecation
This commit is contained in:
commit
d1b2fb2258
|
@ -11,7 +11,8 @@ let googleAuth = module.exports = Router()
|
|||
passport.use(new GoogleStrategy({
|
||||
clientID: config.google.clientID,
|
||||
clientSecret: config.google.clientSecret,
|
||||
callbackURL: config.serverURL + '/auth/google/callback'
|
||||
callbackURL: config.serverURL + '/auth/google/callback',
|
||||
userProfileURL: "https://www.googleapis.com/oauth2/v3/userinfo"
|
||||
}, passportGeneralCallback))
|
||||
|
||||
googleAuth.get('/auth/google', function (req, res, next) {
|
||||
|
|
Loading…
Reference in New Issue