Add option to disable typing notifications (#63)

This commit is contained in:
Digital
2018-06-30 22:26:40 +02:00
committed by Tulir Asokan
parent c3f30a160f
commit bf84fc09b2
5 changed files with 32 additions and 22 deletions

View File

@ -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.