Change internal ID to UUID in user disable event (#11824)

This commit is contained in:
Erik Böck 2026-01-09 05:23:46 -03:00 committed by GitHub
parent bc76f2042d
commit 1ef6365771
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -78,12 +78,12 @@ public class DisableUserCmd extends BaseAsyncCmd {
@Override @Override
public String getEventDescription() { public String getEventDescription() {
return "disabling user: " + getId(); return "disabling user: " + this._uuidMgr.getUuid(User.class, getId());
} }
@Override @Override
public void execute() { public void execute() {
CallContext.current().setEventDetails("UserId: " + getId()); CallContext.current().setEventDetails("User ID: " + this._uuidMgr.getUuid(User.class, getId()));
UserAccount user = _regionService.disableUser(this); UserAccount user = _regionService.disableUser(this);
if (user != null) { if (user != null) {