Merge pull request #892 from Bubu/hide_presences_list

feat: make showing user presence info optional
This commit is contained in:
Krille-chan 2024-02-16 07:23:29 +01:00 committed by GitHub
commit f8fbbf4c3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 56 additions and 3 deletions

View file

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

View file

@ -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';
}