kin: KIN-123-frontend_dev

This commit is contained in:
Gros Frumos 2026-03-18 11:33:24 +02:00
parent 03d49f42e6
commit 06c868b23a
4 changed files with 48 additions and 2 deletions

View file

@ -350,6 +350,8 @@ export const api = {
post<{ status: string; comment: string }>(`/tasks/${id}/revise`, { comment }),
runTask: (id: string) =>
post<{ status: string }>(`/tasks/${id}/run`, {}),
followupTask: (id: string) =>
post<{ created: Task[]; pending_actions: PendingAction[]; needs_decision: boolean }>(`/tasks/${id}/followup`, {}),
bootstrap: (data: { path: string; id: string; name: string }) =>
post<{ project: Project }>('/bootstrap', data),
auditProject: (projectId: string) =>