Migrate Mullvad to has entity name (#107520)

This commit is contained in:
Joost Lekkerkerker 2024-01-08 09:13:50 +01:00 committed by GitHub
parent 7202126751
commit af209fe2b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 1 deletions

View file

@ -6,6 +6,7 @@ from homeassistant.components.binary_sensor import (
)
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
from homeassistant.helpers.device_registry import DeviceInfo
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.update_coordinator import (
CoordinatorEntity,
@ -17,7 +18,7 @@ from .const import DOMAIN
BINARY_SENSORS = (
BinarySensorEntityDescription(
key="mullvad_exit_ip",
name="Mullvad Exit IP",
translation_key="exit_ip",
device_class=BinarySensorDeviceClass.CONNECTIVITY,
),
)
@ -40,6 +41,8 @@ async def async_setup_entry(
class MullvadBinarySensor(CoordinatorEntity, BinarySensorEntity):
"""Represents a Mullvad binary sensor."""
_attr_has_entity_name = True
def __init__(
self,
coordinator: DataUpdateCoordinator,
@ -50,6 +53,11 @@ class MullvadBinarySensor(CoordinatorEntity, BinarySensorEntity):
super().__init__(coordinator)
self.entity_description = entity_description
self._attr_unique_id = f"{config_entry.entry_id}_{entity_description.key}"
self._attr_device_info = DeviceInfo(
identifiers={(DOMAIN, config_entry.entry_id)},
name="Mullvad VPN",
manufacturer="Mullvad",
)
@property
def is_on(self) -> bool:

View file

@ -12,5 +12,12 @@
"description": "Set up the Mullvad VPN integration?"
}
}
},
"entity": {
"binary_sensor": {
"exit_ip": {
"name": "Exit IP"
}
}
}
}