Add `configuration_url` to iCloud integration (#58557)
parent
211041eb3a
commit
928b8bcdbd
|
@ -116,6 +116,7 @@ class IcloudTrackerEntity(TrackerEntity):
|
|||
def device_info(self) -> DeviceInfo:
|
||||
"""Return the device information."""
|
||||
return DeviceInfo(
|
||||
configuration_url="https://icloud.com/",
|
||||
identifiers={(DOMAIN, self._device.unique_id)},
|
||||
manufacturer="Apple",
|
||||
model=self._device.device_model,
|
||||
|
|
|
@ -94,6 +94,7 @@ class IcloudDeviceBatterySensor(SensorEntity):
|
|||
def device_info(self) -> DeviceInfo:
|
||||
"""Return the device information."""
|
||||
return DeviceInfo(
|
||||
configuration_url="https://icloud.com/",
|
||||
identifiers={(DOMAIN, self._device.unique_id)},
|
||||
manufacturer="Apple",
|
||||
model=self._device.device_model,
|
||||
|
|
Loading…
Reference in New Issue