Fix event

Deskripsi:
- Fix konfirmasi
- Fix qr code
This commit is contained in:
2024-12-06 09:08:57 +08:00
parent 59584f2461
commit 057df80c31
16 changed files with 436 additions and 159 deletions

View File

@@ -0,0 +1,12 @@
import { event_getListAllPublish } from "@/app_modules/event/fun/get/get_list_all_publish";
import { toNumber } from "lodash";
import { NextResponse } from "next/server";
export async function GET(params: Request) {
const { searchParams } = new URL(params.url);
const page = searchParams.get("page");
const data = await event_getListAllPublish({ page: toNumber(page) });
return NextResponse.json({ data });
}