Update soul-content project
This commit is contained in:
9
app/api/payment/checkout/route.js
Normal file
9
app/api/payment/checkout/route.js
Normal file
@@ -0,0 +1,9 @@
|
||||
import { paymentService } from '../../../services/paymentService';
|
||||
import { connectDB } from '../../../lib/db';
|
||||
|
||||
export async function POST(req) {
|
||||
await connectDB();
|
||||
const { orderId, gateway } = await req.json();
|
||||
const result = await paymentService.pay(orderId, gateway);
|
||||
return Response.json({ success: true, result });
|
||||
}
|
||||
Reference in New Issue
Block a user