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

10 lines
310 B
JavaScript
Raw Normal View History

module.exports = function allowQueryParams(params) {
2017-04-01 00:39:29 +08:00
if (!Array.isArray(params)) {
throw new Error('allowQueryParams must receive an Array of params');
}
return function allowQueryParamsMiddleware(req, res, next) {
req.context.allowedQueryParams = params;
next();
};
};