hass-core/homeassistant/components/dialogflow/config_flow.py
Sven Serlier 41882d833d
Update dialogflow URL (#93616)
Update URL
2023-05-28 08:52:52 +02:00

13 lines
379 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/",
},
)