Retrying & deleting failed messages

- Added unsent notice to tab bar room items
This commit is contained in:
Gil Eluard
2021-03-11 09:01:44 +01:00
parent f00281c20f
commit 7d7a546166
3 changed files with 56 additions and 10 deletions
@@ -179,6 +179,11 @@ extern NSString *const kRecentsDataSourceTapOnDirectoryServerChange;
*/
@property (nonatomic, readonly) NSUInteger missedHighlightDirectDiscussionsCount;
/**
The current number of the direct chats with unsent messages.
*/
@property (nonatomic, readonly) NSUInteger unsentMessagesDirectDiscussionsCount;
/**
The current number of the group chats with missed notifications, including the invites.
*/
@@ -189,4 +194,9 @@ extern NSString *const kRecentsDataSourceTapOnDirectoryServerChange;
*/
@property (nonatomic, readonly) NSUInteger missedHighlightGroupDiscussionsCount;
/**
The current number of the group chats with unsent messages.
*/
@property (nonatomic, readonly) NSUInteger unsentMessagesGroupDiscussionsCount;
@end