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

Function update

web/lib/api/conversations.ts:70–74  ·  view source on GitHub ↗
(id, updates)

Source from the content-addressed store, hash-verified

68 },
69
70 async update(id, updates) {
71 findConversation(id); // throws 404 if missing
72 getStore().getState().updateConversation(id, updates);
73 return findConversation(id);
74 },
75
76 async delete(id) {
77 findConversation(id); // throws 404 if missing

Callers

nothing calls this directly

Calls 2

findConversationFunction · 0.85
getStoreFunction · 0.70

Tested by

no test coverage detected