1
0
mirror of https://github.com/bitwarden/server synced 2025-12-29 14:43:39 +00:00

Passing all users.

This commit is contained in:
Jared McCannon
2025-12-04 18:55:48 -06:00
parent e12fa708e7
commit 962dfa7ac2

View File

@@ -104,7 +104,7 @@ public class AutomaticallyConfirmOrganizationUsersValidator(
return (await automaticUserConfirmationPolicyEnforcementValidator.IsCompliantAsync(
new AutomaticUserConfirmationPolicyEnforcementRequest(
request.OrganizationId,
allOrganizationUsersForUser.Where(x => x.OrganizationId != request.OrganizationId),
allOrganizationUsersForUser,
user)))
.Match<Error?>(
error => error,