| 3 | export const USER_THREAD_STATUS_DAYS_LIMIT = 60; |
| 4 | |
| 5 | class UserThreadStatusService { |
| 6 | static async markAsUnread(threadId: string, userId?: string) { |
| 7 | if (userId) { |
| 8 | return prisma.userThreadStatus.deleteMany({ |
nothing calls this directly
no outgoing calls
no test coverage detected