feat(config): add configuration option to allow telephone calls from contacts only

This commit is contained in:
2026-01-01 23:36:44 -06:00
parent 113ececd7a
commit d8af1836cd

View File

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