|
|
@ -28,6 +28,7 @@ module.exports = (req, res, next) => { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (["/static/", "/hax/", "/assets/"].find(p => req.path.startsWith(p)) == null) { |
|
|
|
if (req.user) { |
|
|
|
res.locals.user = { |
|
|
|
loggedIn: true, |
|
|
@ -39,6 +40,7 @@ module.exports = (req, res, next) => { |
|
|
|
loggedIn: false, |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
next() |
|
|
|
} |
|
|
|