From b71b2fce8e738676a85e543fee17302444c5fccd Mon Sep 17 00:00:00 2001 From: Lucas Gabriel Lima <lgl15@inf.ufpr.br> Date: Thu, 3 Nov 2016 11:23:18 -0200 Subject: [PATCH] small fix on commentary --- src/libs/middlewares/passport.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/libs/middlewares/passport.js b/src/libs/middlewares/passport.js index 431eada8..c9399260 100644 --- a/src/libs/middlewares/passport.js +++ b/src/libs/middlewares/passport.js @@ -24,6 +24,9 @@ module.exports = function(passport){ }; /* To check if a user has access to a route, one must use passport.authenticate() specifying 'JWT' as the strategy in the route declaration, like so: +//pass passportfor configuration +require('./config/passport')(passport); + app.post('/route', passport.authenticate('jwt', { session: false}), function(req, res) { }); the user object is then accessible via req.user @@ -48,3 +51,4 @@ var token = getToken(req.headers); if (token) { var decoded = jwt.decode(token, config.get(mongodb.secret)); } + */ -- GitLab