Fix: Donasi
Deskripsi: - Fix notitikasi user to admin - Fix notifikasi admin to user
This commit is contained in:
17
src/app_modules/donasi/fun/get/fun_check_status.tsx
Normal file
17
src/app_modules/donasi/fun/get/fun_check_status.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
"use server";
|
||||
|
||||
import { prisma } from "@/app/lib";
|
||||
|
||||
export async function donasi_checkStatus({ id }: { id: string }) {
|
||||
const checkStatus = await prisma.donasi.findFirst({
|
||||
where: {
|
||||
id: id,
|
||||
},
|
||||
});
|
||||
|
||||
console.log(checkStatus?.donasiMaster_StatusDonasiId, "ini status nya")
|
||||
|
||||
if (checkStatus?.donasiMaster_StatusDonasiId == "2") return true;
|
||||
return false;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user