Skip to content

Instantly share code, notes, and snippets.

@FermiDirak
Created July 16, 2018 09:42
Show Gist options
  • Save FermiDirak/a49ea3bdcefbce10ce2835eb7215777d to your computer and use it in GitHub Desktop.
Save FermiDirak/a49ea3bdcefbce10ce2835eb7215777d to your computer and use it in GitHub Desktop.
router.get('/protected',
passport.authenticate('jwt', {session: false}),
(req, res) => {
const { user } = req;
res.status(200).send({ user });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment