2019-05-13 01:16:55 -07:00
|
|
|
"""Config flow for Twilio."""
|
|
|
|
from homeassistant.helpers import config_entry_flow
|
|
|
|
|
|
|
|
from .const import DOMAIN
|
|
|
|
|
|
|
|
config_entry_flow.register_webhook_flow(
|
|
|
|
DOMAIN,
|
2019-07-31 12:25:30 -07:00
|
|
|
"Twilio Webhook",
|
2019-05-13 01:16:55 -07:00
|
|
|
{
|
2019-07-31 12:25:30 -07:00
|
|
|
"twilio_url": "https://www.twilio.com/docs/glossary/what-is-a-webhook",
|
2019-10-02 18:34:07 +02:00
|
|
|
"docs_url": "https://www.home-assistant.io/integrations/twilio/",
|
2019-07-31 12:25:30 -07:00
|
|
|
},
|
2019-05-13 01:16:55 -07:00
|
|
|
)
|