Add support for trigger and condition category icons (#156533)

This commit is contained in:
Bram Kragten
2025-11-13 20:36:34 +01:00
committed by GitHub
parent 8d557447df
commit 13fbeb6cdb
@@ -777,7 +777,9 @@ class ManifestJSONView(HomeAssistantView):
@websocket_api.websocket_command(
{
"type": "frontend/get_icons",
vol.Required("category"): vol.In({"entity", "entity_component", "services"}),
vol.Required("category"): vol.In(
{"entity", "entity_component", "services", "triggers", "conditions"}
),
vol.Optional("integration"): vol.All(cv.ensure_list, [str]),
}
)