Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable AVM FRITZ!Box Tools device_tracker entities by default #50791

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions homeassistant/components/fritz/device_tracker.py
Expand Up @@ -181,6 +181,11 @@ def icon(self):
return "mdi:lan-connect"
return "mdi:lan-disconnect"

@property
def entity_registry_enabled_default(self) -> bool:
"""Return if the entity should be enabled when first added to the entity registry."""
return False

@callback
def async_process_update(self) -> None:
"""Update device."""
Expand Down