missing middleware

This commit is contained in:
Daniel García Aubert 2019-11-26 15:46:56 +01:00
parent ac198d5b5a
commit c7e803a94c

View File

@ -0,0 +1,13 @@
'use strict';
module.exports = function customProfile () {
return function customProfileMiddleware (req, res, next) {
const layergroupid = res.get('X-Layergroup-Id') || req.params.token;
if (layergroupid) {
req.profiler.add({ layergroupid });
}
next();
};
};