From cc6030cff211c1af7790d33ea030826d2f522d51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Fri, 15 Oct 2021 00:31:46 +0200 Subject: [PATCH] Add configuration_url to Uptime Robot (#57709) --- homeassistant/components/uptimerobot/entity.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/uptimerobot/entity.py b/homeassistant/components/uptimerobot/entity.py index 6944750ab66..f78e2665ffe 100644 --- a/homeassistant/components/uptimerobot/entity.py +++ b/homeassistant/components/uptimerobot/entity.py @@ -33,6 +33,7 @@ class UptimeRobotEntity(CoordinatorEntity): "manufacturer": "Uptime Robot Team", "entry_type": "service", "model": self.monitor.type.name, + "configuration_url": f"https://uptimerobot.com/dashboard#{self.monitor.id}", } self._attr_extra_state_attributes = { ATTR_TARGET: self.monitor.url,