(threadId: string)
| 313 | } |
| 314 | |
| 315 | async function unmuteThread(threadId: string) { |
| 316 | Toast.info('Thread was unmuted.'); |
| 317 | markUserThreadStatuses(threadId, { |
| 318 | muted: false, |
| 319 | read: false, |
| 320 | reminder: false, |
| 321 | }); |
| 322 | } |
| 323 | |
| 324 | async function readThread(threadId: string) { |
| 325 | Toast.info('Thread was marked as read.'); |
nothing calls this directly
no test coverage detected