Files
payload/src/collections/bindCollection.ts
2020-11-20 14:54:47 -05:00

9 lines
177 B
TypeScript

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