Files
2026-07-20 22:52:35 -04:00

33 lines
972 B
Python

"""Spook - Your homie."""
from __future__ import annotations
from typing import TYPE_CHECKING
import voluptuous as vol
from homeassistant.components.homeassistant import DOMAIN
from homeassistant.helpers import config_validation as cv, entity_registry as er
from ....services import AbstractSpookAdminService
if TYPE_CHECKING:
from homeassistant.core import ServiceCall
class SpookService(AbstractSpookAdminService):
"""Home Assistant Core integration service to enable an entity."""
domain = DOMAIN
service = "enable_entity"
schema = {vol.Required("entity_id"): vol.All(cv.ensure_list, [cv.string])}
async def async_handle_service(self, call: ServiceCall) -> None:
"""Handle the service call."""
entity_registry = er.async_get(self.hass)
for entity_id in call.data["entity_id"]:
entity_registry.async_update_entity(
entity_id=entity_id,
disabled_by=None,
)