mirror of
https://github.com/home-assistant/core.git
synced 2026-05-27 02:36:00 +01:00
09c51da3a2
Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
11 lines
310 B
Python
11 lines
310 B
Python
"""Constants for the onboarding component."""
|
|
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]
|
|
|
|
DEFAULT_AREAS = ("living_room", "kitchen", "bedroom")
|