diff options
author | Ralph Krimmel | 2019-11-28 12:25:59 +0100 |
---|---|---|
committer | Ralph Krimmel | 2019-11-28 12:25:59 +0100 |
commit | 3fb3ca54e9c038ad091d234b19f5bd64003f8321 (patch) | |
tree | b05f7f12df9d4f0be0103d801baf47ab39c76c60 /lib/web/auth/facebook | |
parent | e0a88727423dfdb24e09f4e7e69cae718a7de127 (diff) |
Removing returnTo setting from referer in all other authentication sources
Signed-off-by: Ralph Krimmel <rkrimme1@gwdg.de>
Diffstat (limited to 'lib/web/auth/facebook')
-rw-r--r-- | lib/web/auth/facebook/index.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/web/auth/facebook/index.js b/lib/web/auth/facebook/index.js index 418ddeee..0ba948bb 100644 --- a/lib/web/auth/facebook/index.js +++ b/lib/web/auth/facebook/index.js @@ -5,7 +5,7 @@ const passport = require('passport') const FacebookStrategy = require('passport-facebook').Strategy const config = require('../../../config') -const { setReturnToFromReferer, passportGeneralCallback } = require('../utils') +const { passportGeneralCallback } = require('../utils') let facebookAuth = module.exports = Router() @@ -16,7 +16,6 @@ passport.use(new FacebookStrategy({ }, passportGeneralCallback)) facebookAuth.get('/auth/facebook', function (req, res, next) { - setReturnToFromReferer(req) passport.authenticate('facebook')(req, res, next) }) |