1
0
mirror of https://github.com/bitwarden/server synced 2025-12-06 00:03:34 +00:00

fix TDE offboarding event type (#6076)

This commit is contained in:
bnagawiecki
2025-07-10 12:57:22 -04:00
committed by GitHub
parent df004d0af0
commit 1176b18d44

View File

@@ -91,7 +91,7 @@ public class TdeOffboardingPasswordCommand : ITdeOffboardingPasswordCommand
user.MasterPasswordHint = hint;
await _userRepository.ReplaceAsync(user);
await _eventService.LogUserEventAsync(user.Id, EventType.User_UpdatedTempPassword);
await _eventService.LogUserEventAsync(user.Id, EventType.User_TdeOffboardingPasswordSet);
await _pushService.PushLogOutAsync(user.Id);
return IdentityResult.Success;