(id)
| 74 | }, |
| 75 | |
| 76 | async delete(id) { |
| 77 | findConversation(id); // throws 404 if missing |
| 78 | getStore().getState().deleteConversation(id); |
| 79 | }, |
| 80 | |
| 81 | async export(id, format) { |
| 82 | const conv = findConversation(id); |
nothing calls this directly
no test coverage detected