mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
8799feb801
- extracted constants file into a new package - replaced all local requires of the file with new package
16 lines
355 B
JavaScript
16 lines
355 B
JavaScript
const constants = require('@tryghost/constants');
|
|
|
|
module.exports = function updateUserLastSeenMiddleware(req, res, next) {
|
|
if (!req.user) {
|
|
return next();
|
|
}
|
|
|
|
if (Date.now() - req.user.get('last_seen') < constants.ONE_HOUR_MS) {
|
|
return next();
|
|
}
|
|
|
|
req.user.updateLastSeen().then(() => {
|
|
next();
|
|
}, next);
|
|
};
|