From d384feb87feaab98ff347e7de5633153a79878a3 Mon Sep 17 00:00:00 2001 From: Peter Nijssen Date: Fri, 5 Nov 2021 19:11:30 +0100 Subject: [PATCH] Add configuration URL to Spider (#59171) --- homeassistant/components/spider/climate.py | 1 + homeassistant/components/spider/switch.py | 1 + 2 files changed, 2 insertions(+) diff --git a/homeassistant/components/spider/climate.py b/homeassistant/components/spider/climate.py index 72ae67c7600..4d3b24466f9 100644 --- a/homeassistant/components/spider/climate.py +++ b/homeassistant/components/spider/climate.py @@ -50,6 +50,7 @@ class SpiderThermostat(ClimateEntity): def device_info(self) -> DeviceInfo: """Return the device_info of the device.""" return DeviceInfo( + configuration_url="https://mijn.ithodaalderop.nl/", identifiers={(DOMAIN, self.thermostat.id)}, manufacturer=self.thermostat.manufacturer, model=self.thermostat.model, diff --git a/homeassistant/components/spider/switch.py b/homeassistant/components/spider/switch.py index 4569105b8f4..089421ba447 100644 --- a/homeassistant/components/spider/switch.py +++ b/homeassistant/components/spider/switch.py @@ -28,6 +28,7 @@ class SpiderPowerPlug(SwitchEntity): def device_info(self) -> DeviceInfo: """Return the device_info of the device.""" return DeviceInfo( + configuration_url="https://mijn.ithodaalderop.nl/", identifiers={(DOMAIN, self.power_plug.id)}, manufacturer=self.power_plug.manufacturer, model=self.power_plug.model,