* added the address section * updated code and strings * syncing name and address * improved code * added a way to reset the state * better documentation * update strings * handling the alias * alias error state * update strings * error handling * improved the error handling * new preview tests, even if they do not work well * improved tests * unit tests * pr comments and using the correct value * fix * pr comments * to improve safety and control of the FF * fixed a test * updated tests * update SDK
19 lines
484 B
Swift
19 lines
484 B
Swift
//
|
|
// Copyright 2023, 2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/// This parameters are only used in the create room flow for having persisted informations between screens
|
|
struct CreateRoomFlowParameters {
|
|
var name = ""
|
|
var topic = ""
|
|
var isRoomPrivate = true
|
|
var isKnockingOnly = false
|
|
var avatarImageMedia: MediaInfo?
|
|
var aliasLocalPart: String?
|
|
}
|