Implement tenant announcements and audit log fixes
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-01-02 14:19:46 +01:00
parent 412ecbe691
commit 8f13465415
33 changed files with 1400 additions and 117 deletions

View File

@@ -49,6 +49,16 @@ class SuperAdminAuditLogger
?string $source = null,
?User $actor = null
): ?SuperAdminActionLog {
if ($operation === 'updated') {
$changed = array_keys($record->getChanges());
if ($changed === []) {
return null;
}
$metadata = self::fieldsMetadata($changed);
}
$action = $this->formatAction($record, $operation);
return $this->record(