diff options
Diffstat (limited to 'server/controllers')
-rw-r--r-- | server/controllers/transaction.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/server/controllers/transaction.js b/server/controllers/transaction.js index 9edb778..5143c2d 100644 --- a/server/controllers/transaction.js +++ b/server/controllers/transaction.js @@ -127,6 +127,21 @@ module.exports = { res.status(500).json({status: "Couldn't update order in database!"}) console.error(err); }); + }, + + async showPaid(req, res) { + const orders = await Order.find({status: 'paid'}); + let formattedResponse = []; + + orders.forEach(order => { + formattedResponse.push({ + shipping: order.shipping, + items: order.items, + updatedAt: order.updatedAt + }); + }); + + res.json(formattedResponse); } }; |