product changes

This commit is contained in:
2025-05-30 10:20:36 +05:30
parent bb9813a09f
commit 2a7d465424

View File

@@ -5,7 +5,7 @@ import EventsDataModel from "../../../shared/model/simulation/eventsDataModel.ts
export class ProductFlowservice {
static async productAdd(req: Request, res: Response): Promise<any> {
try {
const { productName, productId, , organization } = req.body;
const { productName, productId, organization } = req.body;
if (!organization) {
return res.json({ message: "organization not found" });
}