|
|
@ -103,13 +103,13 @@ exports.updateProduct = async (req, res) => {
|
|
|
|
}, { new: true });
|
|
|
|
}, { new: true });
|
|
|
|
|
|
|
|
|
|
|
|
if (!product) {
|
|
|
|
if (!product) {
|
|
|
|
return res.status(404).json({ message: 'Product not found' });
|
|
|
|
return res.status(404).json(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
res.json({ message: 'Product updated successfully', product });
|
|
|
|
res.json(true);
|
|
|
|
} catch (error) {
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error);
|
|
|
|
console.error(error);
|
|
|
|
res.status(500).json({ message: 'Error updating product' });
|
|
|
|
res.status(500).json(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|