feature: Surface Existing Unused APIs
CI / backend (push) Successful in 5m58s
CI / frontend (push) Failing after 1m15s

This commit is contained in:
2026-08-12 04:56:06 +08:00
parent 4085aaa549
commit 00f832aa73
19 changed files with 1453 additions and 17 deletions
@@ -13,7 +13,7 @@
<template #queue>
<h2 class="text-xl font-semibold mb-4 text-ink-strong">Verification Queue</h2>
<p class="text-sm text-ink-secondary mb-4">
Batches pending verification, sorted by submission time (oldest first).
Batches pending verification, oldest first (FIFO by last update).
</p>
<BatchList
:batches="batchStore.batches"
@@ -84,8 +84,7 @@ function openBatch(id: string) {
}
async function loadQueue() {
await batchStore.listBatches({
status: 'PENDING_VERIFICATION',
await batchStore.listVerificationQueue({
page: 1,
pageSize: 50,
})