Penambahan fitur block user: 50%

Fix:
- app/(application)/(user)/forum/[id]/index.tsx
- app/(application)/(user)/home.tsx
- screens/Forum/ListPage.tsx
- screens/Forum/MenuDrawerSection.tsx/MenuBeranda.tsx
- service/api-client/api-master.ts
- service/api-client/api-user.ts

### No Issue
This commit is contained in:
2025-11-25 11:04:12 +08:00
parent 41e648d8f3
commit 00eea71248
6 changed files with 98 additions and 8 deletions

View File

@@ -1,5 +1,17 @@
import { apiConfig } from "../api-config";
// ================== START MASTER ================== //
export async function apiMasterAppCategory() {
try {
const response = await apiConfig.get(`/mobile/master/app-category`);
return response.data;
} catch (error) {
throw error;
}
}
// ================== END MASTER ================== //
// ================== START MASTER PORTFOLIO ================== //
export async function apiMasterBidangBisnis() {
try {
@@ -167,4 +179,4 @@ export async function apiMasterTransaction() {
} catch (error) {
throw error;
}
}
}