mirror of
https://github.com/elisspace/core.git
synced 2026-08-29 23:52:02 +00:00
* Only expose default cloud domains in default agent * Copy exposed domain list to conversation * Implement requested changes * Add test for exposed devices/areas
19 lines
269 B
Python
19 lines
269 B
Python
"""Const for conversation integration."""
|
|
|
|
DOMAIN = "conversation"
|
|
|
|
DEFAULT_EXPOSED_DOMAINS = {
|
|
"climate",
|
|
"cover",
|
|
"fan",
|
|
"humidifier",
|
|
"light",
|
|
"lock",
|
|
"scene",
|
|
"script",
|
|
"sensor",
|
|
"switch",
|
|
"vacuum",
|
|
"water_heater",
|
|
}
|