Various improvements

This commit is contained in:
Ilya Laktyushin
2025-02-25 19:59:48 +04:00
parent 4aeab37c70
commit cb0b8c0b9e
63 changed files with 2420 additions and 560 deletions

View File

@@ -314,10 +314,12 @@ public struct ChatControllerInitialBotAppStart {
public enum ChatControllerInteractionNavigateToPeer {
public struct InfoParams {
public let switchToRecommendedChannels: Bool
public let switchToGroupsInCommon: Bool
public let ignoreInSavedMessages: Bool
public init(switchToRecommendedChannels: Bool = false, ignoreInSavedMessages: Bool = false) {
public init(switchToRecommendedChannels: Bool = false, switchToGroupsInCommon: Bool = false, ignoreInSavedMessages: Bool = false) {
self.switchToRecommendedChannels = switchToRecommendedChannels
self.switchToGroupsInCommon = switchToGroupsInCommon
self.ignoreInSavedMessages = ignoreInSavedMessages
}
}