Deprecate the map integration (#113215)

* Deprecate the map integration

* Revert changes in DashboardsCollection._async_load_data

* Add option to allow single word in dashboard URL

* Update tests

* Translate title

* Add icon

* Improve test coverage
This commit is contained in:
Erik Montnemery
2024-03-14 14:04:41 +01:00
committed by GitHub
parent fef2d7ddd4
commit a16ea3d7bd
19 changed files with 480 additions and 36 deletions
+4 -1
View File
@@ -441,7 +441,10 @@ def gen_platform_strings_schema(config: Config, integration: Integration) -> vol
ONBOARDING_SCHEMA = vol.Schema(
{vol.Required("area"): {str: translation_value_validator}}
{
vol.Required("area"): {str: translation_value_validator},
vol.Required("dashboard"): {str: {"title": translation_value_validator}},
}
)