* Only expose default cloud domains in default agent * Copy exposed domain list to conversation * Implement requested changes * Add test for exposed devices/areas
18 lines
269 B
Python
18 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",
|
|
}
|