feat(09-02): add getAdminOverview() to api/admin.js

- Export async function calling request('/api/admin/overview')
- Follows existing GET helper pattern (no extra wrapping)
- Auto-re-exported via client.js barrel (Phase 8 CODE-04 invariant preserved)
This commit is contained in:
curo1305
2026-06-12 15:46:00 +02:00
parent 2fd7591eac
commit fd12ee2a22
+4
View File
@@ -141,6 +141,10 @@ export function adminListDailyExports() {
return request('/api/admin/audit-log/daily-exports')
}
export async function getAdminOverview() {
return request('/api/admin/overview')
}
/**
* Download a specific Celery daily audit export file from MinIO using fetch + Blob URL.
*