(id, updates)
| 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 |
nothing calls this directly
no test coverage detected