From 450e20b4eb82caeeb4d3dd56e2e250e1a5aafcdc Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 14 May 2024 12:24:37 +0900 Subject: [PATCH] more docs --- docs/asyncio_thread_safety.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/asyncio_thread_safety.md b/docs/asyncio_thread_safety.md index cba400c8..089d5e5f 100644 --- a/docs/asyncio_thread_safety.md +++ b/docs/asyncio_thread_safety.md @@ -136,6 +136,18 @@ The floor registry must be modified in the event loop thread. There is no sync A The floor registry must be modified in the event loop thread. There is no sync API for the floor registry. Use `hass.add_job` to schedule a function in the event loop that calls `floor_registry.async_update`. +#### issue_registry.async_get_or_create + +The issue registry must be modified in the event loop thread. Call `issue_registry.create_issue` instead. + +#### issue_registry.async_delete + +The issue registry must be modified in the event loop thread. Call `issue_registry.delete_issue` instead. + +#### issue_registry.async_ignore + +The issue registry must be modified in the event loop thread. There is no sync API to ignore an issue in the issue registry. Use `hass.add_job` to schedule a function in the event loop that calls `issue_registry.async_ignore_issue`. + #### label_registry.async_create The label registry must be modified in the event loop thread. There is no sync API for the label registry. Use `hass.add_job` to schedule a function in the event loop that calls `label_registry.async_create`.