about summary refs log tree commit diff
path: root/app/javascript/mastodon/reducers/conversations.js
AgeCommit message (Collapse)Author
2019-10-01Fix delete conversation action not being reflected in web UI (#12030)Eugen Rochko
2019-07-25Change account domain block to clear out notifications and follows (#11393)Eugen Rochko
2019-02-27Fix direct timeline pagination in the WebUI (#10126)ThibG
The `hasMore` property of timelines in redux store was set whenever an API request returned only one page of results, *even* if the query only requested newer conversations (using `since_id`), causing `hasMore` to be incorrectly set to false whenever fetching new toots in the direct timeline, which happens each time the direct message column is opened. (Basically #9516 for direct messages)
2018-11-05Check for empty "last_status" before sorting DM column (#9207)Steven Tappert
* Check for empty "last_status" before sorting * Small touchups for codeclimate
2018-10-31Fix reducer error when conversation has no last status in web UI (#9173)Eugen Rochko
Fix #9170
2018-10-19Add unread indicator to conversations (#9009)Eugen Rochko
2018-10-11Do not push DMs into the home feed (#8940)Eugen Rochko
* Do not push DMs into the home feed * Show DMs column after sending a DM, if DMs column is not already shown
2018-10-07Add conversations API (#8832)Eugen Rochko
* Add conversations API * Add web UI for conversations * Add test for conversations API * Add tests for ConversationAccount * Improve web UI * Rename ConversationAccount to AccountConversation * Remove conversations on block and mute * Change last_status_id to be a denormalization of status_ids * Add optimistic locking