Files
payload/src/collections/bindCollection.ts
2020-11-20 13:39:18 -05:00

9 lines
179 B
TypeScript

const bindCollectionMiddleware = (collection) => {
return (req, res, next) => {
req.collection = collection;
next();
};
};
module.exports = bindCollectionMiddleware;