config update

This commit is contained in:
ycc 2023-09-27 17:16:23 +02:00
parent e0faaf8cef
commit 4750915b49

View File

@ -19,18 +19,22 @@ type Config struct {
ServerPollInterval int `json:"server_poll_interval,omitempty"` ServerPollInterval int `json:"server_poll_interval,omitempty"`
DbSize int `json:"db_size,omitempty"` DbSize int `json:"db_size,omitempty"`
// GUI // GUI
LastOpenChat string `json:"last_open_chat,omitempty"` LastOpenChat string `json:"last_open_chat,omitempty"`
SoundNotification bool `json:"sound_notification,omitempty"` SoundNotificationEnable bool `json:"sound_notification_enable,omitempty"`
DefaultNotificationSound string `json:"default_notification_sound,omitempty"` DefaultNotificationSound string `json:"default_notification_sound,omitempty"`
NotificationVibe string `json:"notification_vibe,omitempty"` NotificationVibeEnable bool `json:"notification_vibe_enable,omitempty"`
DefaultNotificationVibe string `json:"default_notification_vibe,omitempty"` DefaultNotificationVibe string `json:"default_notification_vibe,omitempty"`
NotificationLED string `json:"notification_led,omitempty"` NotificationLEDEnable bool `json:"notification_led_enable,omitempty"`
DefaultNotificationLEDColor string `json:"default_notification_led_color,omitempty"` DefaultNotificationLEDColor string `json:"default_notification_led_color,omitempty"`
VisualNotification bool `json:"visual_notification,omitempty"` VisualNotificationEnable bool `json:"visual_notification_enable,omitempty"`
VisualNotifiactionModes string `json:"visual_notifiaction_modes,omitempty"` VisualNotificationModes string `json:"visual_notifiaction_modes,omitempty"`
PrivateChatNotifiactions bool `json:"private_chat_notifiactions,omitempty"` PrivateChatNotificationsEnable bool `json:"private_chat_notifiactions_enable,omitempty"`
GroupChatNotifiactions bool `json:"group_chat_notifiactions,omitempty"` GroupChatNotificationsEnable bool `json:"group_chat_notifiactions_enable,omitempty"`
ChannelNotifications bool `json:"channel_notifications,omitempty"` ChannelNotificationsEnable bool `json:"channel_notifications_enable,omitempty"`
Language string `json:"language,omitempty"`
Theme string `json:"theme,omitempty"`
FingerprintEnable string `json:"fingerprint_enable,omitempty"`
// Debug // Debug
DbSuffix string `json:"db_suffix,omitempty"` DbSuffix string `json:"db_suffix,omitempty"`