* initial commit for sections * updates * add description * fix test * rename collapsed key * New schema * update snapshots * Testing for sections * Validate no duplicate input keys across sections * rename all_inputs * Update homeassistant/components/blueprint/models.py --------- Co-authored-by: Erik Montnemery <erik@montnemery.com>
14 lines
343 B
Python
14 lines
343 B
Python
"""Constants for the blueprint integration."""
|
|
|
|
BLUEPRINT_FOLDER = "blueprints"
|
|
|
|
CONF_BLUEPRINT = "blueprint"
|
|
CONF_USE_BLUEPRINT = "use_blueprint"
|
|
CONF_INPUT = "input"
|
|
CONF_SOURCE_URL = "source_url"
|
|
CONF_HOMEASSISTANT = "homeassistant"
|
|
CONF_MIN_VERSION = "min_version"
|
|
CONF_AUTHOR = "author"
|
|
CONF_COLLAPSED = "collapsed"
|
|
|
|
DOMAIN = "blueprint"
|