Add title option to notify entity (#32576)

* Add title option to notify entity

* Update example
This commit is contained in:
Jan Bouwhuis 2024-05-03 12:02:46 +02:00 committed by GitHub
parent 819fad0678
commit 29c87a8a08
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -41,6 +41,7 @@ Integrations can also implement the notify entity platform. Entity platform impl
| Service data attribute | Optional | Description |
| ---------------------- | -------- | ----------- |
| `message` | no | Body of the notification.
| `title` | yes | Title of the notification.
## Companion app notifications
@ -71,6 +72,7 @@ service: notify.send_message
data:
entity_id: notify.my_direct_message_notifier
message: "You have an update!"
title: "Status changed"
```
{% endraw %}