Moved gravatar and update checking settings to the settings-bundle system

This commit is contained in:
Jan Böhmer 2024-07-16 21:58:41 +02:00
parent 2bc50b2888
commit 2ef46cdd34
9 changed files with 90 additions and 25 deletions

View file

@ -26,6 +26,7 @@ namespace App\Settings;
use App\Settings\SystemSettings\AttachmentsSettings;
use App\Settings\SystemSettings\CustomizationSettings;
use App\Settings\SystemSettings\HistorySettings;
use App\Settings\SystemSettings\PrivacySettings;
use Jbtronics\SettingsBundle\Settings\EmbeddedSettings;
use Jbtronics\SettingsBundle\Settings\Settings;
@ -35,6 +36,9 @@ class SystemSettings
#[EmbeddedSettings()]
public ?CustomizationSettings $customization = null;
#[EmbeddedSettings()]
public ?PrivacySettings $privacy = null;
#[EmbeddedSettings()]
public ?AttachmentsSettings $attachments = null;