plebdevs/src/pages/api/purchases.js

21 lines
621 B
JavaScript
Raw Normal View History

import { addPurchaseToUser } from "@/db/models/userModels";
export default async function handler(req, res) {
if (req.method === 'POST') {
try {
const { userId, resourceId, amountPaid } = req.body;
const updatedUser = await addPurchaseToUser(userId, {
resourceId,
amountPaid: parseInt(amountPaid, 10) // Ensure amountPaid is an integer
});
res.status(200).json(updatedUser);
} catch (error) {
res.status(500).json({ error: error.message });
}
} else {
res.setHeader('Allow', ['POST']);
res.status(405).end(`Method ${req.method} Not Allowed`);
}
}