14 lines
325 B
Python
14 lines
325 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/components/ifttt/'
|
||
|
}
|
||
|
)
|