2018-07-17 08:49:15 +00:00
|
|
|
"""Constants for the onboarding component."""
|
|
|
|
DOMAIN = 'onboarding'
|
|
|
|
STEP_USER = 'user'
|
2019-05-23 00:24:46 +00:00
|
|
|
STEP_CORE_CONFIG = 'core_config'
|
2019-05-08 05:51:24 +00:00
|
|
|
STEP_INTEGRATION = 'integration'
|
2018-07-17 08:49:15 +00:00
|
|
|
|
|
|
|
STEPS = [
|
2019-05-08 05:51:24 +00:00
|
|
|
STEP_USER,
|
2019-05-23 00:24:46 +00:00
|
|
|
STEP_CORE_CONFIG,
|
2019-05-08 05:51:24 +00:00
|
|
|
STEP_INTEGRATION,
|
2018-07-17 08:49:15 +00:00
|
|
|
]
|
2019-05-08 05:51:24 +00:00
|
|
|
|
|
|
|
DEFAULT_AREAS = (
|
|
|
|
'living_room',
|
|
|
|
'kitchen',
|
|
|
|
'bedroom',
|
|
|
|
)
|