16 lines
363 B
Python
16 lines
363 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/components/twilio/'
|
|
}
|
|
)
|