terminal: command to show the most recent chats (#1756)

* terminal: command to show the list of the last active chats

* indent for chats without messages, help

* update command in the test
This commit is contained in:
Evgeny Poberezkin
2023-01-16 12:10:47 +00:00
committed by GitHub
parent af414d7f6e
commit 774af334fd
6 changed files with 76 additions and 37 deletions
+2
View File
@@ -262,6 +262,7 @@ data ChatCommand
| DeleteGroupLink GroupName
| ShowGroupLink GroupName
| SendGroupMessageQuote {groupName :: GroupName, contactName_ :: Maybe ContactName, quotedMsg :: ByteString, message :: ByteString}
| LastChats (Maybe Int)
| LastMessages (Maybe ChatName) Int (Maybe String)
| LastChatItemId (Maybe ChatName) Int
| ShowChatItem (Maybe ChatItemId)
@@ -296,6 +297,7 @@ data ChatResponse
| CRChatStopped
| CRChatSuspended
| CRApiChats {chats :: [AChat]}
| CRChats {chats :: [AChat]}
| CRApiChat {chat :: AChat}
| CRChatItems {chatItems :: [AChatItem]}
| CRChatItemId (Maybe ChatItemId)