Use entry.as_dict() in OpenUV diagnostics (#80115)

This commit is contained in:
Aaron Bach 2022-10-11 10:17:03 -06:00 committed by GitHub
parent 020b7e9762
commit 4ea46bf841
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 15 deletions

View file

@ -5,18 +5,27 @@ from typing import Any
from homeassistant.components.diagnostics import async_redact_data
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import CONF_API_KEY, CONF_LATITUDE, CONF_LONGITUDE
from homeassistant.const import (
CONF_API_KEY,
CONF_LATITUDE,
CONF_LONGITUDE,
CONF_UNIQUE_ID,
)
from homeassistant.core import HomeAssistant
from . import OpenUV
from .const import DOMAIN
CONF_COORDINATES = "coordinates"
CONF_TITLE = "title"
TO_REDACT = {
CONF_API_KEY,
CONF_LATITUDE,
CONF_LONGITUDE,
# Config entry title and unique ID may contain sensitive data:
CONF_TITLE,
CONF_UNIQUE_ID,
}
@ -27,9 +36,6 @@ async def async_get_config_entry_diagnostics(
openuv: OpenUV = hass.data[DOMAIN][entry.entry_id]
return {
"entry": {
"data": async_redact_data(entry.data, TO_REDACT),
"options": async_redact_data(entry.options, TO_REDACT),
},
"entry": async_redact_data(entry.as_dict(), TO_REDACT),
"data": async_redact_data(openuv.data, TO_REDACT),
}