2018-07-17 08:49:15 +00:00
|
|
|
"""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"
|
2021-03-30 00:20:11 +00:00
|
|
|
STEP_ANALYTICS = "analytics"
|
2018-07-17 08:49:15 +00:00
|
|
|
|
2021-03-30 00:20:11 +00:00
|
|
|
STEPS = [STEP_USER, STEP_CORE_CONFIG, STEP_ANALYTICS, STEP_INTEGRATION]
|
2019-05-08 05:51:24 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
DEFAULT_AREAS = ("living_room", "kitchen", "bedroom")
|