mirror of
https://github.com/home-assistant/core.git
synced 2026-05-27 10:46:38 +01:00
01f0e4fe48
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
16 lines
341 B
Python
16 lines
341 B
Python
"""Constants for the ntfy integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN = "ntfy"
|
|
DEFAULT_URL: Final = "https://ntfy.sh/"
|
|
|
|
CONF_TOPIC = "topic"
|
|
CONF_PRIORITY = "filter_priority"
|
|
CONF_TITLE = "filter_title"
|
|
CONF_MESSAGE = "filter_message"
|
|
CONF_TAGS = "filter_tags"
|
|
SECTION_AUTH = "auth"
|
|
SECTION_FILTER = "filter"
|
|
NTFY_EVENT = "ntfy_event"
|