upd: bug list

Deskripsi:
- tampilan list bug error
- tampilan tambah bug
- connected to database; list and create

No Issues
This commit is contained in:
2026-04-13 15:17:46 +08:00
parent c0205ce2bf
commit 14a9e2c687
6 changed files with 578 additions and 3 deletions

View File

@@ -31,4 +31,7 @@ export const API_URLS = {
getOperators: (page: number, search: string) =>
`/api/operators?page=${page}&search=${encodeURIComponent(search)}`,
getOperatorStats: () => `/api/operators/stats`,
getBugs: (page: number, search: string, app: string, status: string) =>
`/api/bugs?page=${page}&search=${encodeURIComponent(search)}&app=${app}&status=${status}`,
createBug: () => `/api/bugs`,
}