1
mirror of https://github.com/home-assistant/core synced 2024-07-21 14:24:50 +02:00

All supported domains should be exposed by default (#17579)

According to documentation, all supported domains should be exposed by default
https://www.home-assistant.io/components/google_assistant/#expose_by_default
This commit is contained in:
Sébastien RAMAGE 2018-10-22 20:07:11 +02:00 committed by Paulus Schoutsen
parent fd9370da39
commit 4e8cd7281c

View File

@ -14,7 +14,8 @@ CONF_ROOM_HINT = 'room'
DEFAULT_EXPOSE_BY_DEFAULT = True
DEFAULT_EXPOSED_DOMAINS = [
'switch', 'light', 'group', 'media_player', 'fan', 'cover', 'climate'
'climate', 'cover', 'fan', 'group', 'input_boolean', 'light',
'media_player', 'scene', 'script', 'switch'
]
CLIMATE_MODE_HEATCOOL = 'heatcool'
CLIMATE_SUPPORTED_MODES = {'heat', 'cool', 'off', 'on', CLIMATE_MODE_HEATCOOL}