1
0
mirror of https://github.com/bitwarden/server synced 2026-01-28 15:23:38 +00:00

moved event call

This commit is contained in:
Jared McCannon
2026-01-22 13:54:51 -06:00
parent 342e4d6ce7
commit 8f1d5359c5

View File

@@ -251,11 +251,11 @@ public class RestoreOrganizationUserCommand(
defaultCollectionName);
}
await eventService.LogOrganizationUserEventAsync(organizationUser, EventType.OrganizationUser_Restored);
await pushNotificationService.PushSyncOrgKeysAsync(organizationUser.UserId.Value);
}
await eventService.LogOrganizationUserEventAsync(organizationUser, EventType.OrganizationUser_Restored);
result.Add(Tuple.Create(organizationUser, ""));
}
catch (BadRequestException e)