mirror of
https://github.com/home-assistant/core.git
synced 2025-07-12 15:57:06 +00:00
Add configuration_url
to iCloud integration (#58557)
This commit is contained in:
parent
bcd4ffdef3
commit
f28de7891d
@ -116,6 +116,7 @@ class IcloudTrackerEntity(TrackerEntity):
|
|||||||
def device_info(self) -> DeviceInfo:
|
def device_info(self) -> DeviceInfo:
|
||||||
"""Return the device information."""
|
"""Return the device information."""
|
||||||
return DeviceInfo(
|
return DeviceInfo(
|
||||||
|
configuration_url="https://icloud.com/",
|
||||||
identifiers={(DOMAIN, self._device.unique_id)},
|
identifiers={(DOMAIN, self._device.unique_id)},
|
||||||
manufacturer="Apple",
|
manufacturer="Apple",
|
||||||
model=self._device.device_model,
|
model=self._device.device_model,
|
||||||
|
@ -94,6 +94,7 @@ class IcloudDeviceBatterySensor(SensorEntity):
|
|||||||
def device_info(self) -> DeviceInfo:
|
def device_info(self) -> DeviceInfo:
|
||||||
"""Return the device information."""
|
"""Return the device information."""
|
||||||
return DeviceInfo(
|
return DeviceInfo(
|
||||||
|
configuration_url="https://icloud.com/",
|
||||||
identifiers={(DOMAIN, self._device.unique_id)},
|
identifiers={(DOMAIN, self._device.unique_id)},
|
||||||
manufacturer="Apple",
|
manufacturer="Apple",
|
||||||
model=self._device.device_model,
|
model=self._device.device_model,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user