feat: implement conversation mute and favorite functionality with corresponding notification suppression.
This commit is contained in:
@@ -488,6 +488,12 @@ model Conversation {
|
||||
userUnreadCount Int @default(0) // Unread count for the user
|
||||
agentUnreadCount Int @default(0) // Unread count for the agent
|
||||
|
||||
// Mute & Favorite (per-user)
|
||||
userMuted Boolean @default(false)
|
||||
agentMuted Boolean @default(false)
|
||||
userFavorited Boolean @default(false)
|
||||
agentFavorited Boolean @default(false)
|
||||
|
||||
// Timestamps
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
|
||||
Reference in New Issue
Block a user