mirror of https://github.com/home-assistant/core
15 lines
380 B
Python
15 lines
380 B
Python
"""Config flow for DialogFlow."""
|
|
|
|
from homeassistant.helpers import config_entry_flow
|
|
|
|
from .const import DOMAIN
|
|
|
|
config_entry_flow.register_webhook_flow(
|
|
DOMAIN,
|
|
"Dialogflow Webhook",
|
|
{
|
|
"dialogflow_url": "https://cloud.google.com/dialogflow/es/docs/fulfillment-webhook",
|
|
"docs_url": "https://www.home-assistant.io/integrations/dialogflow/",
|
|
},
|
|
)
|