mirror of
https://github.com/sstent/expressmongotest.git
synced 2026-01-25 16:42:00 +00:00
9 lines
174 B
JavaScript
9 lines
174 B
JavaScript
function loggedIn(req, res, next) {
|
|
if (! req.session.user) {
|
|
res.send('Forbidden. Please log in first.', 403);
|
|
} else {
|
|
next();
|
|
}
|
|
}
|
|
|
|
module.exports = loggedIn; |