2018-07-17 10:49:15 +02:00
|
|
|
"""Constants for the onboarding component."""
|
2019-07-31 12:25:30 -07:00
|
|
|
DOMAIN = "onboarding"
|
|
|
|
STEP_USER = "user"
|
|
|
|
STEP_CORE_CONFIG = "core_config"
|
|
|
|
STEP_INTEGRATION = "integration"
|
2021-03-30 02:20:11 +02:00
|
|
|
STEP_ANALYTICS = "analytics"
|
2018-07-17 10:49:15 +02:00
|
|
|
|
2021-03-30 02:20:11 +02:00
|
|
|
STEPS = [STEP_USER, STEP_CORE_CONFIG, STEP_ANALYTICS, STEP_INTEGRATION]
|
2019-05-07 22:51:24 -07:00
|
|
|
|
2019-07-31 12:25:30 -07:00
|
|
|
DEFAULT_AREAS = ("living_room", "kitchen", "bedroom")
|