From 3f2461f9a3a31c6853e68f1a24516c660ad4bd75 Mon Sep 17 00:00:00 2001 From: Ray Okamoto <22254748+rayokamoto@users.noreply.github.com> Date: Sun, 18 Feb 2024 20:23:09 +1030 Subject: [PATCH] chore(payment): Update function comment --- src/app/api/payment/route.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/api/payment/route.ts b/src/app/api/payment/route.ts index 323c44ae..a57894f4 100644 --- a/src/app/api/payment/route.ts +++ b/src/app/api/payment/route.ts @@ -119,6 +119,7 @@ export async function PUT(request: Request) { return Response.json({ success: true }); } +// Get membership payment status export async function GET() { const user = await currentUser(); if (!user) {