diff options
author | Sheogorath | 2019-12-03 14:35:19 +0100 |
---|---|---|
committer | GitHub | 2019-12-03 14:35:19 +0100 |
commit | 9bd09805d42da5953e25342620d94f4f5b260b6e (patch) | |
tree | 60af1701a119262d77691152a93ce40ce4e6a705 /lib/web/auth/oauth2 | |
parent | 689f5a0a9583fdd774a271a9e6265ee5356d72a0 (diff) | |
parent | bd689dd09687d9523e0457ad0e52ac583bc27075 (diff) |
Merge pull request #227 from foobarable/fix/saml
Fixing redirection after SAML login
Diffstat (limited to '')
-rw-r--r-- | lib/web/auth/oauth2/index.js | 3 |
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) }) |