aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/config/middlewares/authorization.js
blob: 6726f8b86de37d48af3d1bdcdb4ff0b72bbbec3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// AUTH Middleware. This is what checks if you are logged in.

/*
 * Generic require login routing
 */

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