1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 05:26:47 +00:00

Introduce Home Assistant Labs (#156840)

This commit is contained in:
Franck Nijhof
2025-11-20 21:22:37 +01:00
committed by GitHub
parent 126fd217e7
commit 482b5d49a3
22 changed files with 1832 additions and 2 deletions

View File

@@ -279,6 +279,17 @@ INTEGRATION_MANIFEST_SCHEMA = vol.Schema(
vol.Optional("disabled"): str,
vol.Optional("iot_class"): vol.In(SUPPORTED_IOT_CLASSES),
vol.Optional("single_config_entry"): bool,
vol.Optional("preview_features"): vol.Schema(
{
cv.slug: vol.Schema(
{
vol.Optional("feedback_url"): vol.Url(),
vol.Optional("learn_more_url"): vol.Url(),
vol.Optional("report_issue_url"): vol.Url(),
}
)
}
),
}
)