MCPcopy
hub / github.com/codeaashu/claude-code / findConversation

Function findConversation

web/lib/api/conversations.ts:38–43  ·  view source on GitHub ↗
(id: string)

Source from the content-addressed store, hash-verified

36}
37
38function findConversation(id: string): Conversation {
39 const store = getStore();
40 const conv = store.getState().conversations.find((c) => c.id === id);
41 if (!conv) throw new ApiError(404, `Conversation ${id} not found`, "not_found");
42 return conv;
43}
44
45export const conversationAPI: ConversationAPI = {
46 async list(opts) {

Callers 5

getFunction · 0.85
createFunction · 0.85
updateFunction · 0.85
deleteFunction · 0.85
exportFunction · 0.85

Calls 1

getStoreFunction · 0.70

Tested by

no test coverage detected