9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
const bindCollectionMiddleware = (collection) => {
|
|
return (req, res, next) => {
|
|
req.collection = collection;
|
|
next();
|
|
};
|
|
};
|
|
|
|
module.exports = bindCollectionMiddleware;
|