diff options
author | Christoph (Sheogorath) Kern | 2018-03-25 19:15:17 +0200 |
---|---|---|
committer | GitHub | 2018-03-25 19:15:17 +0200 |
commit | 57c47a65dde59d355fba702bc91c63eebcc2533c (patch) | |
tree | d24e3e7a226d4587497873a0a73a29110c21832c /lib/web/auth/google | |
parent | ea1d35eddb12815f0d28b4531d6671ed8a1a4e23 (diff) | |
parent | 2411dffa2ce997370a636ed56cc73bcc4661ec7f (diff) |
Merge pull request #758 from SISheogorath/cleanup/config
Change config to camel case with backwards compatibility
Diffstat (limited to 'lib/web/auth/google')
-rw-r--r-- | lib/web/auth/google/index.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/web/auth/google/index.js b/lib/web/auth/google/index.js index 609c69cf..60282cf5 100644 --- a/lib/web/auth/google/index.js +++ b/lib/web/auth/google/index.js @@ -11,7 +11,7 @@ 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' }, passportGeneralCallback)) googleAuth.get('/auth/google', function (req, res, next) { @@ -21,7 +21,7 @@ googleAuth.get('/auth/google', function (req, res, next) { // google auth callback googleAuth.get('/auth/google/callback', passport.authenticate('google', { - successReturnToOrRedirect: config.serverurl + '/', - failureRedirect: config.serverurl + '/' + successReturnToOrRedirect: config.serverURL + '/', + failureRedirect: config.serverURL + '/' }) ) |