mirror of
https://github.com/bitwarden/mobile
synced 2025-12-29 06:33:53 +00:00
* [SG-691] Added new message to be broadcasted when account is switched to trigger a check for login requests. * [SG-691] PR fixes
15 lines
568 B
C#
15 lines
568 B
C#
namespace Bit.Core.Utilities
|
|
{
|
|
public static class AccountsManagerMessageCommands
|
|
{
|
|
public const string LOCKED = "locked";
|
|
public const string LOCK_VAULT = "lockVault";
|
|
public const string LOGOUT = "logout";
|
|
public const string LOGGED_OUT = "loggedOut";
|
|
public const string ADD_ACCOUNT = "addAccount";
|
|
public const string ACCOUNT_ADDED = "accountAdded";
|
|
public const string SWITCHED_ACCOUNT = "switchedAccount";
|
|
public const string ACCOUNT_SWITCH_COMPLETED = "accountSwitchCompleted";
|
|
}
|
|
}
|