- reaction count limit API

- my profile stories improvements
- recommended channels
This commit is contained in:
Isaac
2024-04-05 22:51:46 +04:00
parent 3689a8a07d
commit fa0929ef95
41 changed files with 2139 additions and 678 deletions

View File

@@ -422,6 +422,11 @@ public final class Transaction {
return self.postbox?.chatListTable.getAllPeerIds() ?? []
}
public func chatListGetAllPeerIds(groupId: PeerGroupId) -> [PeerId] {
assert(!self.disposed)
return self.postbox?.chatListTable.getAllPeerIds(groupId: groupId) ?? []
}
public func updateCurrentPeerNotificationSettings(_ notificationSettings: [PeerId: PeerNotificationSettings]) {
assert(!self.disposed)
self.postbox?.updateCurrentPeerNotificationSettings(notificationSettings)