Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,13 @@ import UIKit
// TODO: Rename
public final class CollectionUpdateProvider: CollectionUpdateProviderProtocol {

// TODO: Stop sharing configuration with adapter
public typealias Configuration = NewChatMessageCollectionAdapter.Configuration
public struct Configuration {
let isRegisteringPresentersAutomatically: Bool

public init(isRegisteringPresentersAutomatically: Bool) {
self.isRegisteringPresentersAutomatically = isRegisteringPresentersAutomatically
}
}

// MARK: - Private properties

Expand Down
Loading