1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00

[EC-844] Improve Apple Watch states (#2246)

* EC-844 improve need login / need setup states on the watch

* EC-844 Fix naming of things and moved constant to the proper place to maintain format. Also removed UpdateLastUserShouldConnectToWatchAsync from the interface of the StateService given that it's not used outside the service and made it private
This commit is contained in:
Federico Maccaroni
2022-12-15 15:21:29 -03:00
committed by GitHub
parent a19b5c4e05
commit 728182de6c
5 changed files with 31 additions and 11 deletions

View File

@@ -162,5 +162,6 @@ namespace Bit.Core.Abstractions
Task SetUsernameGenerationOptionsAsync(UsernameGenerationOptions value, string userId = null);
Task<bool> GetShouldConnectToWatchAsync(string userId = null);
Task SetShouldConnectToWatchAsync(bool shouldConnect, string userId = null);
Task<bool> GetLastUserShouldConnectToWatchAsync();
}
}