[taskboard] add dispatch control plane

This commit is contained in:
2026-03-06 15:21:19 -08:00
parent 1699f0f2b7
commit be1cf8ca8d
25 changed files with 1594 additions and 292 deletions

13
app/dispatch/page.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { DispatchHistory } from "@/components/dispatch-history";
import { listFailedTasks, listTaskEvents } from "@/lib/tasks";
export const dynamic = "force-dynamic";
export default async function DispatchPage() {
const [events, failedTasks] = await Promise.all([
listTaskEvents(undefined, 50),
listFailedTasks(),
]);
return <DispatchHistory events={events} failedTasks={failedTasks} />;
}