diff options
| author | bob <bcz@cs.brown.edu> | 2019-08-29 13:49:45 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-08-29 13:49:45 -0400 |
| commit | e2317289507fd6d20096dc1d2abd5ab1d815e895 (patch) | |
| tree | 1a4a98af879b3dc66b5844deec2d9c8917c2fe97 /src/server/authentication | |
| parent | 0b43aead85c0de5877c0ecea7703acb6f2539249 (diff) | |
| parent | 22a5999626b11cf75cafbcd421601e668438f6ad (diff) | |
Merge branch 'master' into monika_linking
Diffstat (limited to 'src/server/authentication')
| -rw-r--r-- | src/server/authentication/config/passport.ts | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/server/authentication/config/passport.ts b/src/server/authentication/config/passport.ts index d42741410..10b17de71 100644 --- a/src/server/authentication/config/passport.ts +++ b/src/server/authentication/config/passport.ts @@ -42,9 +42,11 @@ export let isAuthenticated = (req: Request, res: Response, next: NextFunction) = export let isAuthorized = (req: Request, res: Response, next: NextFunction) => { const provider = req.path.split("/").slice(-1)[0]; - if (_.find(req.user.tokens, { kind: provider })) { - next(); - } else { - res.redirect(`/auth/${provider}`); + if (req.user) { + if (_.find((req.user as any).tokens, { kind: provider })) { + next(); + } else { + res.redirect(`/auth/${provider}`); + } } };
\ No newline at end of file |
