Limit transmission ConfigEntrySelect to integration domain (#137769)

This commit is contained in:
Marc Mueller 2025-02-08 14:20:30 +01:00 committed by Franck Nijhof
parent a4c0304e1f
commit 42d8889778
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3

View File

@ -78,7 +78,9 @@ MIGRATION_NAME_TO_KEY = {
SERVICE_BASE_SCHEMA = vol.Schema(
{
vol.Required(CONF_ENTRY_ID): selector.ConfigEntrySelector(),
vol.Required(CONF_ENTRY_ID): selector.ConfigEntrySelector(
{"integration": DOMAIN}
),
}
)