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/github | |
parent | 689f5a0a9583fdd774a271a9e6265ee5356d72a0 (diff) | |
parent | bd689dd09687d9523e0457ad0e52ac583bc27075 (diff) |
Merge pull request #227 from foobarable/fix/saml
Fixing redirection after SAML login
Diffstat (limited to 'lib/web/auth/github')
-rw-r--r-- | lib/web/auth/github/index.js | 3 |
1 files changed, 1 insertions, 2 deletions
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) }) |