1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 07:36:14 -05:00

Remove block legacy users feature flag (#5212)

This commit is contained in:
Bernd Schoolmann
2025-01-10 11:55:40 +01:00
committed by GitHub
parent ce2ecf9da0
commit 8a68f075cc
3 changed files with 3 additions and 8 deletions

View File

@ -369,7 +369,6 @@ public class BaseRequestValidatorTests
context.CustomValidatorRequestContext.CaptchaResponse.IsBot = false;
context.ValidatedTokenRequest.ClientId = "Not Web";
_sut.isValid = true;
_featureService.IsEnabled(FeatureFlagKeys.BlockLegacyUsers).Returns(true);
_twoFactorAuthenticationValidator
.RequiresTwoFactorAsync(Arg.Any<User>(), Arg.Any<ValidatedTokenRequest>())
.Returns(Task.FromResult(new Tuple<bool, Organization>(false, null)));