1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-04 22:19:17 +00:00

14 lines
329 B
Python

"""Config flow for IFTTT."""
from homeassistant.helpers import config_entry_flow
from .const import DOMAIN
config_entry_flow.register_webhook_flow(
DOMAIN,
"IFTTT Webhook",
{
"applet_url": "https://ifttt.com/maker_webhooks",
"docs_url": "https://www.home-assistant.io/integrations/ifttt/",
},
)