* added the security and settings button in details * added content to the view * added enable encryption alert * updated preview tests and the UI * removed wrong plists committed by mistake * pr suggestions
15 lines
402 B
Swift
15 lines
402 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 SecurityAndPrivacyScreenViewModelProtocol {
|
|
var actionsPublisher: AnyPublisher<SecurityAndPrivacyScreenViewModelAction, Never> { get }
|
|
var context: SecurityAndPrivacyScreenViewModelType.Context { get }
|
|
}
|