From bcd4ffdef3cc140b4a106342494a3c6bf58aacdc Mon Sep 17 00:00:00 2001 From: Quentame Date: Thu, 28 Oct 2021 08:56:38 +0200 Subject: [PATCH] Add `configuration_url` to Freebox integration (#58555) --- homeassistant/components/freebox/router.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/freebox/router.py b/homeassistant/components/freebox/router.py index 2eef38d7d1e..e352146915e 100644 --- a/homeassistant/components/freebox/router.py +++ b/homeassistant/components/freebox/router.py @@ -184,6 +184,7 @@ class FreeboxRouter: def device_info(self) -> DeviceInfo: """Return the device information.""" return DeviceInfo( + configuration_url=f"https://{self._host}:{self._port}/", connections={(CONNECTION_NETWORK_MAC, self.mac)}, identifiers={(DOMAIN, self.mac)}, manufacturer="Freebox SAS",