upd: connected ke db

Deskripi:
- list error report general dan per apps
- update status
- update feedback

No Issues
This commit is contained in:
2026-04-14 12:05:34 +08:00
parent 14adaa8526
commit a0cafbf2e2
6 changed files with 963 additions and 180 deletions

View File

@@ -34,5 +34,7 @@ export const API_URLS = {
getBugs: (page: number, search: string, app: string, status: string) =>
`/api/bugs?page=${page}&search=${encodeURIComponent(search)}&app=${app}&status=${status}`,
createBug: () => `/api/bugs`,
updateBugStatus: (id: string) => `/api/bugs/${id}/status`,
updateBugFeedback: (id: string) => `/api/bugs/${id}/feedback`,
createLog: () => `/api/logs`,
}