mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 07:36:14 -05:00
Remove U2F APIs again (#1319)
* Revert "U2F (#1304)"
This reverts commit ce4f025a0c
.
* Avoid removing WebAuthn fixes
This commit is contained in:
@ -23,7 +23,6 @@ namespace Bit.Core.Test.Services
|
||||
private readonly ICipherRepository _cipherRepository;
|
||||
private readonly IOrganizationUserRepository _organizationUserRepository;
|
||||
private readonly IOrganizationRepository _organizationRepository;
|
||||
private readonly IU2fRepository _u2fRepository;
|
||||
private readonly IMailService _mailService;
|
||||
private readonly IPushNotificationService _pushService;
|
||||
private readonly IUserStore<User> _userStore;
|
||||
@ -53,7 +52,6 @@ namespace Bit.Core.Test.Services
|
||||
_cipherRepository = Substitute.For<ICipherRepository>();
|
||||
_organizationUserRepository = Substitute.For<IOrganizationUserRepository>();
|
||||
_organizationRepository = Substitute.For<IOrganizationRepository>();
|
||||
_u2fRepository = Substitute.For<IU2fRepository>();
|
||||
_mailService = Substitute.For<IMailService>();
|
||||
_pushService = Substitute.For<IPushNotificationService>();
|
||||
_userStore = Substitute.For<IUserStore<User>>();
|
||||
@ -82,7 +80,6 @@ namespace Bit.Core.Test.Services
|
||||
_cipherRepository,
|
||||
_organizationUserRepository,
|
||||
_organizationRepository,
|
||||
_u2fRepository,
|
||||
_mailService,
|
||||
_pushService,
|
||||
_userStore,
|
||||
|
Reference in New Issue
Block a user