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/ldap | |
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/ldap')
-rw-r--r-- | lib/web/auth/ldap/index.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/web/auth/ldap/index.js b/lib/web/auth/ldap/index.js index 28f3e471..b501106d 100644 --- a/lib/web/auth/ldap/index.js +++ b/lib/web/auth/ldap/index.js @@ -6,7 +6,6 @@ const LDAPStrategy = require('passport-ldapauth') const config = require('../../../config') const models = require('../../../models') const logger = require('../../../logger') -const { setReturnToFromReferer } = require('../utils') const { urlencodedParser } = require('../../utils') const errors = require('../../../errors') @@ -82,7 +81,6 @@ passport.use(new LDAPStrategy({ ldapAuth.post('/auth/ldap', urlencodedParser, function (req, res, next) { if (!req.body.username || !req.body.password) return errors.errorBadRequest(res) - setReturnToFromReferer(req) passport.authenticate('ldapauth', { successReturnToOrRedirect: config.serverURL + '/', failureRedirect: config.serverURL + '/', |