1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

[PM-15621] Undo

This commit is contained in:
Jimmy Vo 2025-03-07 11:02:41 -05:00
parent c8e816b4b6
commit dc136365e7
No known key found for this signature in database
GPG Key ID: 7CB834D6F4FFCA11

View File

@ -122,18 +122,6 @@ public class DeleteManagedOrganizationUserAccountCommand : IDeleteManagedOrganiz
private async Task<CommandResult> ValidateAsync(Guid organizationId, OrganizationUser orgUser, User user, Guid? deletingUserId, IDictionary<Guid, bool> managementStatus)
{
var result1 = EnsureUserStatusIsNotInvited(orgUser);
if (result1 is not Success)
{
return result1;
}
var result2 = PreventSelfDeletion(orgUser, deletingUserId);
if (result2 is not Success)
{
return result2;
}
var validators = new[]
{
() => EnsureUserStatusIsNotInvited(orgUser),