# fix
## Deskripsi: - Perubahan tampilan notifikasi - Pin map sesuai logo - Pin map bisa custom ### No Issue
This commit is contained in:
13
src/app_modules/_global/fun/get/fun_master_kategori_app.ts
Normal file
13
src/app_modules/_global/fun/get/fun_master_kategori_app.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
"use server";
|
||||
|
||||
import prisma from "@/app/lib/prisma";
|
||||
|
||||
export async function funGlobal_getMasterKategoriApp() {
|
||||
const data = await prisma.masterKategoriApp.findMany({
|
||||
where: {
|
||||
isActive: true,
|
||||
},
|
||||
});
|
||||
|
||||
return data;
|
||||
}
|
||||
3
src/app_modules/_global/fun/get/index.ts
Normal file
3
src/app_modules/_global/fun/get/index.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
import { funGlobal_getMasterKategoriApp } from "./fun_master_kategori_app";
|
||||
|
||||
export { funGlobal_getMasterKategoriApp };
|
||||
Reference in New Issue
Block a user