conversations-classic-ios/ConversationsClassic/AppCore/Actions/AccountsActions.swift

13 lines
376 B
Swift
Raw Normal View History

2024-06-19 15:15:27 +00:00
enum AccountsAction: Codable {
case accountsListUpdated(accounts: [Account])
case goTo(AccountNavigationState)
case tryAddAccountWithCredentials(login: String, password: String)
case addAccountError(jid: String, reason: String?)
case makeAccountPermanent(account: Account)
2024-07-22 12:02:33 +00:00
case clientServerFeaturesUpdated(jid: String, features: [ServerFeature])
2024-06-19 15:15:27 +00:00
}