Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add homeassistant.delete_label service #712

Merged
merged 1 commit into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
"""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, label_registry as lr

from ....services import AbstractSpookAdminService

if TYPE_CHECKING:
from homeassistant.core import ServiceCall


class SpookService(AbstractSpookAdminService):
"""Home Assistant service to delete labels on the fly."""

domain = DOMAIN
service = "delete_label"
schema = {vol.Required("label_id"): cv.string}

async def async_handle_service(self, call: ServiceCall) -> None:
"""Handle the service call."""
label_registry = lr.async_get(self.hass)
label_registry.async_delete(call.data["label_id"])
13 changes: 12 additions & 1 deletion custom_components/spook/services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,18 @@ homeassistant_delete_floor:
required: true
selector:
floor:
multiple: true

homeassistant_delete_label:
name: Delete a label 👻
description: >-
Deletes a label on the fly.
fields:
label_id:
name: Label ID
description: The ID of the label to delete.
required: true
selector:
label:

homeassistant_ignore_all_discovered:
name: Ignore all currently discovered devices 👻
Expand Down