# Developer

## feat
- Memberi akses pada user menjadi admin
### No issue
This commit is contained in:
2024-04-04 14:32:48 +08:00
parent cdcdf704ff
commit f58a5afff5
12 changed files with 389 additions and 79 deletions

View File

@@ -0,0 +1,9 @@
import ComponentAdminGlobal_LoadingPage from "@/app_modules/admin/component/loading_admin_page";
export default async function Page() {
return (
<>
<ComponentAdminGlobal_LoadingPage />
</>
);
}

View File

@@ -0,0 +1,15 @@
import AdminDeveloper from "@/app_modules/admin/developer";
import adminDeveloper_funGetListAllAdmin from "@/app_modules/admin/developer/fun/get/fun_get_list_all_admin";
import adminDeveloper_funGetListAllUser from "@/app_modules/admin/developer/fun/get/fun_get_list_all_user";
import _ from "lodash";
export default async function Page() {
const listUser = await adminDeveloper_funGetListAllUser();
const listAdmin = await adminDeveloper_funGetListAllAdmin();
return (
<>
<AdminDeveloper listUser={listUser as any} listAdmin={listAdmin as any} />
</>
);
}