From 3fb3ca54e9c038ad091d234b19f5bd64003f8321 Mon Sep 17 00:00:00 2001 From: Ralph Krimmel Date: Thu, 28 Nov 2019 12:25:59 +0100 Subject: Removing returnTo setting from referer in all other authentication sources Signed-off-by: Ralph Krimmel --- lib/web/auth/github/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/web/auth/github/index.js') diff --git a/lib/web/auth/github/index.js b/lib/web/auth/github/index.js index afa5fa31..3a3a84c6 100644 --- a/lib/web/auth/github/index.js +++ b/lib/web/auth/github/index.js @@ -5,7 +5,7 @@ const passport = require('passport') const GithubStrategy = require('passport-github').Strategy const config = require('../../../config') const response = require('../../../response') -const { setReturnToFromReferer, passportGeneralCallback } = require('../utils') +const { passportGeneralCallback } = require('../utils') let githubAuth = module.exports = Router() @@ -16,7 +16,6 @@ passport.use(new GithubStrategy({ }, passportGeneralCallback)) githubAuth.get('/auth/github', function (req, res, next) { - setReturnToFromReferer(req) passport.authenticate('github')(req, res, next) }) -- cgit v1.2.3