mirror of https://github.com/home-assistant/core
27 lines
624 B
Python
27 lines
624 B
Python
"""Diagnostics support for Overseerr."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import asdict
|
|
from typing import Any
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import CONF_CLOUDHOOK_URL
|
|
from .coordinator import OverseerrConfigEntry
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, entry: OverseerrConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
|
|
has_cloudhooks = CONF_CLOUDHOOK_URL in entry.data
|
|
|
|
data = entry.runtime_data
|
|
|
|
return {
|
|
"has_cloudhooks": has_cloudhooks,
|
|
"coordinator_data": asdict(data.data),
|
|
}
|