summaryrefslogtreecommitdiff
path: root/lib/web/auth/oauth2/index.js
diff options
context:
space:
mode:
authorRalph Krimmel2019-11-28 12:25:59 +0100
committerRalph Krimmel2019-11-28 12:25:59 +0100
commit3fb3ca54e9c038ad091d234b19f5bd64003f8321 (patch)
treeb05f7f12df9d4f0be0103d801baf47ab39c76c60 /lib/web/auth/oauth2/index.js
parente0a88727423dfdb24e09f4e7e69cae718a7de127 (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/oauth2/index.js')
-rw-r--r--lib/web/auth/oauth2/index.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/web/auth/oauth2/index.js b/lib/web/auth/oauth2/index.js
index 78434271..2bd73196 100644
--- a/lib/web/auth/oauth2/index.js
+++ b/lib/web/auth/oauth2/index.js
@@ -4,7 +4,7 @@ const Router = require('express').Router
const passport = require('passport')
const { Strategy, InternalOAuthError } = require('passport-oauth2')
const config = require('../../../config')
-const { setReturnToFromReferer, passportGeneralCallback } = require('../utils')
+const { passportGeneralCallback } = require('../utils')
let oauth2Auth = module.exports = Router()
@@ -93,7 +93,6 @@ passport.use(new OAuth2CustomStrategy({
}, passportGeneralCallback))
oauth2Auth.get('/auth/oauth2', function (req, res, next) {
- setReturnToFromReferer(req)
passport.authenticate('oauth2')(req, res, next)
})