Allow to configure history log settings via new settings system

This commit is contained in:
Jan Böhmer 2024-05-20 21:48:33 +02:00
parent 0772d85918
commit 7cc67f8bb1
7 changed files with 103 additions and 38 deletions

View file

@ -25,6 +25,7 @@ namespace App\Settings;
use App\Settings\SystemSettings\AttachmentsSettings;
use App\Settings\SystemSettings\CustomizationSettings;
use App\Settings\SystemSettings\HistorySettings;
use Jbtronics\SettingsBundle\Settings\EmbeddedSettings;
use Jbtronics\SettingsBundle\Settings\Settings;
@ -36,4 +37,7 @@ class SystemSettings
#[EmbeddedSettings()]
public ?AttachmentsSettings $attachments = null;
#[EmbeddedSettings()]
public ?HistorySettings $history = null;
}