mirror of
https://github.com/home-assistant/core.git
synced 2025-04-29 11:47:50 +00:00

* Add notification service for Bring component * change to async * update to new library and raise for urgent message without item name * add icons.json and replace string with reference in strings.json * Incorporate proposed changes from https://github.com/home-assistant/core/pull/115510 * Remove unnecessary exception, rewrite translations strings * remove unused constants
12 lines
236 B
Python
12 lines
236 B
Python
"""Constants for the Bring! integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN = "bring"
|
|
|
|
ATTR_SENDER: Final = "sender"
|
|
ATTR_ITEM_NAME: Final = "item"
|
|
ATTR_NOTIFICATION_TYPE: Final = "message"
|
|
|
|
SERVICE_PUSH_NOTIFICATION = "send_message"
|