more docs

This commit is contained in:
J. Nick Koston 2024-05-14 12:16:19 +09:00
parent 78d6aed623
commit f2b967f352
No known key found for this signature in database

View File

@ -90,4 +90,16 @@ The area registry must be modified in the event loop thread. There is no sync AP
#### area_registry.async_update
The area registry must be modified in the event loop thread. There is no sync API for the area registry. Use `hass.add_job` to schedule a function in the event loop that calls `area_registry.async_update`.
The area registry must be modified in the event loop thread. There is no sync API for the area registry. Use `hass.add_job` to schedule a function in the event loop that calls `area_registry.async_update`.
#### category_registry.async_create
The category registry must be modified in the event loop thread. There is no sync API for the category registry. Use `hass.add_job` to schedule a function in the event loop that calls `category_registry.async_create`.
#### category_registry.async_delete
The category registry must be modified in the event loop thread. There is no sync API for the category registry. Use `hass.add_job` to schedule a function in the event loop that calls `category_registry.async_delete`.
#### category_registry.async_update
The category registry must be modified in the event loop thread. There is no sync API for the category registry. Use `hass.add_job` to schedule a function in the event loop that calls `category_registry.async_update`.