(threadId: string, name: string)
| 1353 | store.dispatch(threadAdapterEvents.fetchNextPageRequested()); |
| 1354 | }, |
| 1355 | renameThread(threadId: string, name: string): Promise<void> { |
| 1356 | return trackMutation( |
| 1357 | threadAdapterEvents.renameRequested({ |
| 1358 | requestId: createThreadRequestId(), |
| 1359 | threadId, |
| 1360 | name, |
| 1361 | }), |
| 1362 | ); |
| 1363 | }, |
| 1364 | archiveThread(threadId: string): Promise<void> { |
| 1365 | return trackMutation( |
| 1366 | threadAdapterEvents.archiveRequested({ |
nothing calls this directly
no test coverage detected
searching dependent graphs…