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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -91,7 +91,7 @@ public class TdeOffboardingPasswordCommand : ITdeOffboardingPasswordCommand
user.MasterPasswordHint = hint; user.MasterPasswordHint = hint;
await _userRepository.ReplaceAsync(user); 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); await _pushService.PushLogOutAsync(user.Id);
return IdentityResult.Success; return IdentityResult.Success;