* Return an extra oauth2 auth code during onboarding * Areas in const * Add integration step * Lint * Fix tests * Fix test * Verify integration added to done * Verify step is marked as done
15 lines
240 B
Python
15 lines
240 B
Python
"""Constants for the onboarding component."""
|
|
DOMAIN = 'onboarding'
|
|
STEP_USER = 'user'
|
|
STEP_INTEGRATION = 'integration'
|
|
|
|
STEPS = [
|
|
STEP_USER,
|
|
STEP_INTEGRATION,
|
|
]
|
|
|
|
DEFAULT_AREAS = (
|
|
'living_room',
|
|
'kitchen',
|
|
'bedroom',
|
|
)
|