aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/config/middlewares/authorization.js
blob: 8d822f09aa2fe0673adc4fd53a369b8a95860e71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13


/*
 * Generic require login routing
 */

exports.requiresLogin = function(req, res, next) {
    if (!req.isAuthenticated()) return res.redirect('/test');
    next();
}