UNPKG

generator-aristos

Version:

create aristos cms fast with yeoman generator.

17 lines (16 loc) 400 B
exports.isUser = (req, res, next) => { if (req.isAuthenticated()) { next(); } else { req.flash("error_msg", "Please log in."); res.redirect("/users/login"); } }; exports.isAdmin = (req, res, next) => { if (req.isAuthenticated() && res.locals.user.admin == 1) { next(); } else { req.flash("error_msg", "Please log in as admin."); res.redirect("/users/login"); } };