Windshaft-cartodb/lib/cartodb/middleware/allow-query-params.js

7 lines
193 B
JavaScript
Raw Normal View History

module.exports = function allowQueryParams(params) {
return function allowQueryParamsMiddleware(req, res, next) {
req.context.allowedQueryParams = params;
next();
};
};