Home Assistant Unofficial Reference 2024.12.1
config_flow.py
Go to the documentation of this file.
1 """Config flow for Mailgun."""
2 
3 from homeassistant.helpers import config_entry_flow
4 
5 from .const import DOMAIN
6 
7 config_entry_flow.register_webhook_flow(
8  DOMAIN,
9  "Mailgun Webhook",
10  {
11  "mailgun_url": (
12  "https://documentation.mailgun.com/en/latest/user_manual.html#webhooks"
13  ),
14  "docs_url": "https://www.home-assistant.io/integrations/mailgun/",
15  },
16 )