14 lines
354 B
Python
14 lines
354 B
Python
"""Config flow for Twilio."""
|
|
from homeassistant.helpers import config_entry_flow
|
|
|
|
from .const import DOMAIN
|
|
|
|
config_entry_flow.register_webhook_flow(
|
|
DOMAIN,
|
|
"Twilio Webhook",
|
|
{
|
|
"twilio_url": "https://www.twilio.com/docs/glossary/what-is-a-webhook",
|
|
"docs_url": "https://www.home-assistant.io/integrations/twilio/",
|
|
},
|
|
)
|