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

11 lines
298 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)
}