1.0.0.8 logging updates

This commit is contained in:
ponzischeme89
2026-01-18 23:01:03 +13:00
parent 0a1edc0922
commit 7fa9c4d16e
15 changed files with 220 additions and 123 deletions
+2 -2
View File
@@ -338,8 +338,8 @@ export async function getStatistics() {
* GET /api/library - Get library health report
* Returns: { success, scans: [...] }
*/
export async function getLibraryReport(limit = 25) {
return apiFetch(`/library?limit=${limit}`)
export async function getLibraryReport(limit = 200, offset = 0) {
return apiFetch(`/library?limit=${limit}&offset=${offset}`)
}
// ============ SCHEDULED SCANS API ============