(threadId: string)
| 331 | } |
| 332 | |
| 333 | async function unreadThread(threadId: string) { |
| 334 | Toast.info('Thread was marked as unread.'); |
| 335 | markUserThreadStatuses(threadId, { |
| 336 | muted: false, |
| 337 | read: false, |
| 338 | reminder: false, |
| 339 | }); |
| 340 | } |
| 341 | |
| 342 | function onRemind(threadId: string, reminderType: ReminderTypes) { |
| 343 | Toast.info('We will remind you later about this thread.'); |
nothing calls this directly
no test coverage detected