core/homeassistant/components/onboarding/const.py

11 lines
310 B
Python
Raw Normal View History

"""Constants for the onboarding component."""
2019-07-31 19:25:30 +00:00
DOMAIN = "onboarding"
STEP_USER = "user"
STEP_CORE_CONFIG = "core_config"
STEP_INTEGRATION = "integration"
STEP_ANALYTICS = "analytics"
STEPS = [STEP_USER, STEP_CORE_CONFIG, STEP_ANALYTICS, STEP_INTEGRATION]
2019-07-31 19:25:30 +00:00
DEFAULT_AREAS = ("living_room", "kitchen", "bedroom")