mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-22 09:05:34 +01:00
14 lines
275 B
Python
14 lines
275 B
Python
"""Constants for the Matrix integration."""
|
|
|
|
DOMAIN = "matrix"
|
|
|
|
SERVICE_SEND_MESSAGE = "send_message"
|
|
|
|
FORMAT_HTML = "html"
|
|
FORMAT_TEXT = "text"
|
|
|
|
ATTR_FORMAT = "format" # optional message format
|
|
ATTR_IMAGES = "images" # optional images
|
|
|
|
CONF_ROOMS_REGEX = "^[!|#][^:]*:.*"
|