(threadId: string)
| 322 | } |
| 323 | |
| 324 | async function readThread(threadId: string) { |
| 325 | Toast.info('Thread was marked as read.'); |
| 326 | markUserThreadStatuses(threadId, { |
| 327 | muted: false, |
| 328 | read: true, |
| 329 | reminder: false, |
| 330 | }); |
| 331 | } |
| 332 | |
| 333 | async function unreadThread(threadId: string) { |
| 334 | Toast.info('Thread was marked as unread.'); |
nothing calls this directly
no test coverage detected