* Add onboarding support * Lint * Address comments * Mark user step as done if owner user already created
7 lines
114 B
Python
7 lines
114 B
Python
"""Constants for the onboarding component."""
|
|
DOMAIN = 'onboarding'
|
|
STEP_USER = 'user'
|
|
|
|
STEPS = [
|
|
STEP_USER
|
|
]
|