UNPKG

@mee4dy/crud

Version:

Create a backend and frontend in 5 minutes! With our powerful full stack crud system, customize it to suit you.

20 lines (15 loc) 423 B
import { applyDecorators } from '@nestjs/common'; import { UseMiddleware } from './use-middleware.decorator'; export const UseCrudCtx = (callback) => { const middlewareDecorator = UseMiddleware((req) => { const crudCtx = callback(req); if (!req.crudCtx) { req.crudCtx = {}; } req.crudCtx = { ...req.crudCtx, ...crudCtx, }; }); return applyDecorators(middlewareDecorator); };