diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/config.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/config/config.go b/config/config.go index 09e7f0d..8431c9b 100644 --- a/config/config.go +++ b/config/config.go @@ -37,10 +37,11 @@ type AuthCache struct { } type UserPreferences struct { - HideUserList bool `yaml:"hide_user_list"` - HideRoomList bool `yaml:"hide_room_list"` - BareMessageView bool `yaml:"bare_message_view"` - DisableImages bool `yaml:"disable_images"` + HideUserList bool `yaml:"hide_user_list"` + HideRoomList bool `yaml:"hide_room_list"` + BareMessageView bool `yaml:"bare_message_view"` + DisableImages bool `yaml:"disable_images"` + DisableTypingNotifs bool `yaml:"disable_typing_notifs"` } // Config contains the main config of gomuks. |