Update Docusaurus to v3 (#1995)

This commit is contained in:
Tom Brien
2024-06-08 09:38:41 +01:00
committed by GitHub
parent 40731f291f
commit f3b9c78185
15 changed files with 4155 additions and 2397 deletions

View File

@@ -24,7 +24,7 @@ If your integration is going to register services, it will need to provide a des
## Data update coordinator - `coordinator.py`
There are multiple ways for your integration to receive data, including push or poll. Commonly integrations will fetch data with a single coordinated poll across all entities, which requires the use of a `DataUpdateCoordinator`.
If you want to use one, and you choose to create a subclass of it, it is recommended to define the coordinator class in `coordinator.py`. [More information about `DataUpdateCoordinator`](integration_fetching_data.md/#coordinated-single-api-poll-for-data-for-all-entities).
If you want to use one, and you choose to create a subclass of it, it is recommended to define the coordinator class in `coordinator.py`. [More information about `DataUpdateCoordinator`](integration_fetching_data.md#coordinated-single-api-poll-for-data-for-all-entities).
## Where Home Assistant looks for integrations