## Deskripsi:
- Optimalisasi admin voting
## No issue
This commit is contained in:
2024-08-28 15:00:43 +08:00
parent 916c5c7d85
commit 8a018462c7
78 changed files with 3567 additions and 2493 deletions

View File

@@ -0,0 +1,13 @@
"use server";
import prisma from "@/app/lib/prisma";
export async function funGlobal_getNomorAdmin() {
const data = await prisma.nomorAdmin.findFirst({
where: {
isActive: true,
},
});
return data
}

View File

@@ -1,3 +1,5 @@
import { funGlobal_getNomorAdmin } from "./fun_get_nomor_admin";
import { funGlobal_getMasterKategoriApp } from "./fun_master_kategori_app";
export { funGlobal_getMasterKategoriApp };
export { funGlobal_getNomorAdmin };