1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-19 09:43:27 +00:00

[SG-471] Added mock services. Added Accept/reject command binding, navigation and toast messages.

This commit is contained in:
André Bispo
2022-07-27 17:42:50 +01:00
parent 90fe9f8600
commit 7b237b4efe
7 changed files with 83 additions and 2 deletions

View File

@@ -468,5 +468,9 @@ namespace Bit.Core.Services
TwoFactorProvidersData = null;
SelectedTwoFactorProviderType = null;
}
public async Task<AuthResult> GetLogInPasswordlessRequestsAsync() => await Task.FromResult<AuthResult>(new AuthResult());
public async Task<AuthResult> LogInPasswordlessAcceptAsync() => await Task.FromResult<AuthResult>(new AuthResult());
public async Task<AuthResult> LogInPasswordlessRejectAsync() => await Task.FromResult<AuthResult>(new AuthResult());
}
}