chg: [auditLog:entity] unset useless noise from user-settings
parent
fc0920c7c3
commit
b555aed178
|
@ -65,4 +65,14 @@ class AuditLog extends AppModel
|
||||||
}
|
}
|
||||||
return $title;
|
return $title;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function rearrangeForAPI(): void
|
||||||
|
{
|
||||||
|
if (!empty($this->user)) {
|
||||||
|
$this->user = $this->user->toArray();
|
||||||
|
}
|
||||||
|
if (!empty($this->user['user_settings_by_name_with_fallback'])) {
|
||||||
|
unset($this->user['user_settings_by_name_with_fallback']);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue