We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cfeeea commit 03f339bCopy full SHA for 03f339b
homeassistant/components/home_connect/application_credentials.py
@@ -12,3 +12,13 @@ async def async_get_authorization_server(hass: HomeAssistant) -> AuthorizationSe
12
authorize_url=OAUTH2_AUTHORIZE,
13
token_url=OAUTH2_TOKEN,
14
)
15
+
16
17
+async def async_get_description_placeholders(hass: HomeAssistant) -> dict[str, str]:
18
+ """Return description placeholders for the credentials dialog."""
19
+ return {
20
+ "developer_dashboard_url": "https://developer.home-connect.com/",
21
+ "applications_url": "https://developer.home-connect.com/applications",
22
+ "register_application_url": "https://developer.home-connect.com/application/add",
23
+ "redirect_url": "https://my.home-assistant.io/redirect/oauth",
24
+ }
0 commit comments