(threadId: string)
| 304 | } |
| 305 | |
| 306 | async function muteThread(threadId: string) { |
| 307 | Toast.info('Thread was muted.'); |
| 308 | markUserThreadStatuses(threadId, { |
| 309 | muted: true, |
| 310 | read: false, |
| 311 | reminder: false, |
| 312 | }); |
| 313 | } |
| 314 | |
| 315 | async function unmuteThread(threadId: string) { |
| 316 | Toast.info('Thread was unmuted.'); |
nothing calls this directly
no test coverage detected