1
mirror of https://github.com/home-assistant/core synced 2024-08-28 03:36:46 +02:00
ha-core/homeassistant/components/ifttt/config_flow.py

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/",
},
)