From d8af1836cd23021a06a09420cf89cd7fedfbce2c Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Thu, 1 Jan 2026 23:36:44 -0600 Subject: [PATCH] feat(config): add configuration option to allow telephone calls from contacts only --- meshchatx/src/backend/config_manager.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meshchatx/src/backend/config_manager.py b/meshchatx/src/backend/config_manager.py index 65c70d7..12168bb 100644 --- a/meshchatx/src/backend/config_manager.py +++ b/meshchatx/src/backend/config_manager.py @@ -141,6 +141,9 @@ class ConfigManager: self.do_not_disturb_enabled = self.BoolConfig( self, "do_not_disturb_enabled", False ) + self.telephone_allow_calls_from_contacts_only = self.BoolConfig( + self, "telephone_allow_calls_from_contacts_only", False + ) # map config self.map_offline_enabled = self.BoolConfig(self, "map_offline_enabled", False)