diff options
| author | yipstanley <stanley_yip@brown.edu> | 2019-08-27 14:16:26 -0400 |
|---|---|---|
| committer | yipstanley <stanley_yip@brown.edu> | 2019-08-27 14:16:26 -0400 |
| commit | 32f066ebc70684fe410b89fcb87cf550bd3537e3 (patch) | |
| tree | 2f49ec0bb0a7914c19e60d2e6e676c250ec9b453 /src/server/authentication/config/passport.ts | |
| parent | 094bbd52f2b55f501357a9f6b057042ad7684f27 (diff) | |
pdf + new npm version fixes
Diffstat (limited to 'src/server/authentication/config/passport.ts')
| -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 |
