2019-05-13 08:16:55 +00:00
|
|
|
"""Config flow for DialogFlow."""
|
|
|
|
from homeassistant.helpers import config_entry_flow
|
|
|
|
|
2019-12-08 22:40:06 +00:00
|
|
|
from .const import DOMAIN
|
2019-05-13 08:16:55 +00:00
|
|
|
|
|
|
|
config_entry_flow.register_webhook_flow(
|
|
|
|
DOMAIN,
|
2019-07-31 19:25:30 +00:00
|
|
|
"Dialogflow Webhook",
|
2019-05-13 08:16:55 +00:00
|
|
|
{
|
2019-07-31 19:25:30 +00:00
|
|
|
"dialogflow_url": "https://dialogflow.com/docs/fulfillment#webhook",
|
2019-10-02 16:34:07 +00:00
|
|
|
"docs_url": "https://www.home-assistant.io/integrations/dialogflow/",
|
2019-07-31 19:25:30 +00:00
|
|
|
},
|
2019-05-13 08:16:55 +00:00
|
|
|
)
|