CartoDB-SQL-API/app/middlewares/last-modified.js
2019-07-26 19:08:39 +02:00

15 lines
396 B
JavaScript

'use strict';
module.exports = function lastModified () {
return function lastModifiedMiddleware (req, res, next) {
const { affectedTables } = res.locals;
if(!!affectedTables) {
const lastUpdatedAt = affectedTables.getLastUpdatedAt(Date.now());
res.header('Last-Modified', new Date(lastUpdatedAt).toUTCString());
}
next();
};
};