Get the list of trusted domains.
(self)
| 396 | return False |
| 397 | |
| 398 | def get_trusted_domains(self) -> list[str]: |
| 399 | """Get the list of trusted domains.""" |
| 400 | return list(self.preferences.ui.tool_confirmation.trusted_domains) |
| 401 | |
| 402 | def add_trusted_domain(self, domain: str) -> None: |
| 403 | """Add a trusted domain. |
no outgoing calls