1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 15:53:44 +00:00

support for two factor login flow

This commit is contained in:
Kyle Spearrin
2016-07-23 02:17:11 -04:00
parent 2911af2c16
commit cf27ace05e
7 changed files with 169 additions and 14 deletions

View File

@@ -14,22 +14,12 @@ namespace Bit.App.Pages
{
public class PasswordHintPage : ExtendedContentPage
{
private ICryptoService _cryptoService;
private IAuthService _authService;
private IDeviceInfo _deviceInfo;
private IAppIdService _appIdService;
private IUserDialogs _userDialogs;
private ISyncService _syncService;
private IAccountsApiRepository _accountApiRepository;
public PasswordHintPage()
{
_cryptoService = Resolver.Resolve<ICryptoService>();
_authService = Resolver.Resolve<IAuthService>();
_deviceInfo = Resolver.Resolve<IDeviceInfo>();
_appIdService = Resolver.Resolve<IAppIdService>();
_userDialogs = Resolver.Resolve<IUserDialogs>();
_syncService = Resolver.Resolve<ISyncService>();
_accountApiRepository = Resolver.Resolve<IAccountsApiRepository>();
Init();