* Only offer to verify if a cross-signed device is available * Wait until we know which verification options are available before showing them. --------- Co-authored-by: Hubert Chathi <hubertc@matrix.org>
38 lines
836 B
Swift
38 lines
836 B
Swift
//
|
|
// Copyright 2025 Element Creations Ltd.
|
|
// Copyright 2022-2025 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum IdentityConfirmationScreenViewModelAction {
|
|
case otherDevice
|
|
case recoveryKey
|
|
/// Only possible in debug builds.
|
|
case skip
|
|
case reset
|
|
case logout
|
|
}
|
|
|
|
struct IdentityConfirmationScreenViewState: BindableState {
|
|
enum AvailableActions {
|
|
case recovery
|
|
case interactiveVerification
|
|
}
|
|
|
|
var availableActions: [AvailableActions]?
|
|
let learnMoreURL: URL
|
|
}
|
|
|
|
enum IdentityConfirmationScreenViewAction {
|
|
case otherDevice
|
|
case recoveryKey
|
|
/// Only possible in debug builds.
|
|
case skip
|
|
case reset
|
|
case logout
|
|
}
|