Fix: Db Profile

Deskripsi:
- Menghapus field imagesId dan imagesBackgroundId
- Menhapus table backgroundImage
- Menghapus component avatar dan header card yang lama
## No Issue
This commit is contained in:
2024-10-03 15:09:38 +08:00
parent ca99de7dd5
commit cf9355e91f
46 changed files with 81 additions and 1060 deletions

View File

@@ -1,8 +0,0 @@
import { LayoutForum_Komentar } from "@/app_modules/forum";
import React from "react";
export default async function Layout({children}: {children: React.ReactNode}) {
return<>
<LayoutForum_Komentar>{children}</LayoutForum_Komentar>
</>
}

View File

@@ -1,9 +0,0 @@
import ComponentGlobal_V2_LoadingPage from "@/app_modules/_global/loading_page_v2";
export default async function Page() {
return (
<>
<ComponentGlobal_V2_LoadingPage />
</>
);
}

View File

@@ -1,19 +0,0 @@
import { funGetUserIdByToken } from "@/app_modules/_global/fun/get";
import { Forum_Komentar } from "@/app_modules/forum";
import { forum_getOnePostingById } from "@/app_modules/forum/fun/get/get_one_posting_by_id";
export default async function Page({ params }: { params: { id: string } }) {
let postingId = params.id;
const dataPosting = await forum_getOnePostingById(postingId);
const userLoginId = await funGetUserIdByToken();
return (
<>
<Forum_Komentar
dataPosting={dataPosting as any}
userLoginId={userLoginId}
/>
</>
);
}