New App Layout: added suppport for room invites in the all chats screen

This commit is contained in:
Gil Eluard
2022-08-22 13:00:34 +02:00
parent 9152dfb116
commit efe53ee85e
14 changed files with 535 additions and 60 deletions
@@ -221,5 +221,15 @@ typedef enum : NSUInteger {
*/
- (BOOL)dataSource:(MXKDataSource*)dataSource shouldDoAction:(NSString *)actionIdentifier inCell:(id<MXKCellRendering>)cell userInfo:(NSDictionary *)userInfo defaultValue:(BOOL)defaultValue;
/**
Notify the delegate that invites count did change
@see `MXKCellRenderingDelegate` for more details.
@param dataSource the involved data source.
@param invitesCount number of rooms in the invites section.
*/
- (void)dataSource:(MXKDataSource*)dataSource didUpdateInvitesCount:(NSUInteger)invitesCount;
@end