mirror of
https://github.com/home-assistant/core.git
synced 2025-07-16 09:47:13 +00:00
Unload cert_expiry config entries (#27150)
* Allow cert_expiry unloading * Update codeowners
This commit is contained in:
parent
89ebc17fb1
commit
adab228012
@ -49,7 +49,7 @@ homeassistant/components/broadlink/* @danielhiversen
|
||||
homeassistant/components/brunt/* @eavanvalkenburg
|
||||
homeassistant/components/bt_smarthub/* @jxwolstenholme
|
||||
homeassistant/components/buienradar/* @mjj4791 @ties
|
||||
homeassistant/components/cert_expiry/* @cereal2nd
|
||||
homeassistant/components/cert_expiry/* @Cereal2nd @jjlawren
|
||||
homeassistant/components/cisco_ios/* @fbradyirl
|
||||
homeassistant/components/cisco_mobility_express/* @fbradyirl
|
||||
homeassistant/components/cisco_webex_teams/* @fbradyirl
|
||||
|
@ -15,3 +15,11 @@ async def async_setup_entry(hass: HomeAssistantType, entry: ConfigEntry):
|
||||
hass.config_entries.async_forward_entry_setup(entry, "sensor")
|
||||
)
|
||||
return True
|
||||
|
||||
|
||||
async def async_unload_entry(hass, entry):
|
||||
"""Unload a config entry."""
|
||||
hass.async_create_task(
|
||||
hass.config_entries.async_forward_entry_unload(entry, "sensor")
|
||||
)
|
||||
return True
|
||||
|
@ -5,5 +5,8 @@
|
||||
"requirements": [],
|
||||
"config_flow": true,
|
||||
"dependencies": [],
|
||||
"codeowners": ["@cereal2nd"]
|
||||
"codeowners": [
|
||||
"@Cereal2nd",
|
||||
"@jjlawren"
|
||||
]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user