mirror of
https://github.com/home-assistant/core.git
synced 2026-05-26 18:26:25 +01:00
1a3a38d370
* Don't require all panel urls to be registered * Allow removing panels, fire event when panels updated
10 lines
263 B
Python
10 lines
263 B
Python
"""Support for showing device locations."""
|
|
DOMAIN = 'map'
|
|
|
|
|
|
async def async_setup(hass, config):
|
|
"""Register the built-in map panel."""
|
|
hass.components.frontend.async_register_built_in_panel(
|
|
'map', 'map', 'hass:tooltip-account')
|
|
return True
|