Default to showing muted chats.
This commit is contained in:
parent
96dd77364e
commit
0d878ca70a
1 changed files with 2 additions and 2 deletions
|
@ -14,12 +14,12 @@ data class ChatFolderRecord(
|
|||
val includedRecipients: Set<Recipient> = emptySet(),
|
||||
val excludedRecipients: Set<Recipient> = emptySet(),
|
||||
val showUnread: Boolean = false,
|
||||
val showMutedChats: Boolean = false,
|
||||
val showMutedChats: Boolean = true,
|
||||
val showIndividualChats: Boolean = false,
|
||||
val showGroupChats: Boolean = false,
|
||||
val isMuted: Boolean = false,
|
||||
val folderType: FolderType = FolderType.CUSTOM,
|
||||
val unreadCount: Int = 0 // TODO [michelle]: unread count
|
||||
val unreadCount: Int = 0
|
||||
) {
|
||||
enum class FolderType(val value: Int) {
|
||||
/** Folder containing all chats */
|
||||
|
|
Loading…
Add table
Reference in a new issue