* Fail configuration of the authentication service if the homeserver doesn't support login. * Move the ServerSelectionCoordinator logic into the ViewModel. - Handle the new login alert. - Add more tests
15 lines
384 B
Swift
15 lines
384 B
Swift
//
|
|
// Copyright 2022-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import Combine
|
|
|
|
@MainActor
|
|
protocol ServerSelectionScreenViewModelProtocol {
|
|
var actions: AnyPublisher<ServerSelectionScreenViewModelAction, Never> { get }
|
|
var context: ServerSelectionScreenViewModelType.Context { get }
|
|
}
|