MCPcopy
hub / github.com/Dimillian/CodexMonitor / startReview

Function startReview

src/services/tauri.ts:514–525  ·  view source on GitHub ↗
(
  workspaceId: string,
  threadId: string,
  target: ReviewTarget,
  delivery?: "inline" | "detached",
)

Source from the content-addressed store, hash-verified

512}
513
514export async function startReview(
515 workspaceId: string,
516 threadId: string,
517 target: ReviewTarget,
518 delivery?: "inline" | "detached",
519) {
520 const payload: Record<string, unknown> = { workspaceId, threadId, target };
521 if (delivery) {
522 payload.delivery = delivery;
523 }
524 return invoke("start_review", payload);
525}
526
527export async function respondToServerRequest(
528 workspaceId: string,

Callers 3

tauri.test.tsFile · 0.90
usePullRequestComposerFunction · 0.85
useQueuedSendFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected