hass-core/homeassistant/components/onboarding/const.py
Paulus Schoutsen 9e96397e6a
Require core config detection to be triggerd manually (#24019)
* Detect core config

* Remove elevation

* Lint

* Lint

* Fix type
2019-05-22 17:24:46 -07:00

17 lines
295 B
Python

"""Constants for the onboarding component."""
DOMAIN = 'onboarding'
STEP_USER = 'user'
STEP_CORE_CONFIG = 'core_config'
STEP_INTEGRATION = 'integration'
STEPS = [
STEP_USER,
STEP_CORE_CONFIG,
STEP_INTEGRATION,
]
DEFAULT_AREAS = (
'living_room',
'kitchen',
'bedroom',
)