Merge pull request #892 from Bubu/hide_presences_list
feat: make showing user presence info optional
This commit is contained in:
commit
f8fbbf4c3e
7 changed files with 56 additions and 3 deletions
|
|
@ -49,6 +49,7 @@ abstract class AppConfig {
|
|||
static bool sendTypingNotifications = true;
|
||||
static bool sendPublicReadReceipts = true;
|
||||
static bool? sendOnEnter;
|
||||
static bool showPresences = true;
|
||||
static bool experimentalVoip = false;
|
||||
static const bool hideTypingUsernames = false;
|
||||
static const bool hideAllStateEvents = false;
|
||||
|
|
|
|||
|
|
@ -28,4 +28,5 @@ abstract class SettingKeys {
|
|||
'chat.fluffy.send_public_read_receipts';
|
||||
static const String sendOnEnter = 'chat.fluffy.send_on_enter';
|
||||
static const String experimentalVoip = 'chat.fluffy.experimental_voip';
|
||||
static const String showPresences = 'chat.fluffy.show_presences';
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue