mirror of
https://github.com/bodyrep/DemoApp.git
synced 2026-01-25 14:43:00 +00:00
11 lines
274 B
JavaScript
11 lines
274 B
JavaScript
function isAdmin(req, res, next) {
|
|
if (req.session.user.is_admin === false) {
|
|
console.log("not an admin - sending to profile");
|
|
res.redirect('/users/' + req.session.user.username);
|
|
} else {
|
|
console.log("Admin detected");
|
|
next();
|
|
}
|
|
}
|
|
|
|
module.exports = isAdmin; |