From 9bbadf877ddd7cc7bc8b3dd023322f68faec00ad Mon Sep 17 00:00:00 2001 From: Maciej Bieniek Date: Thu, 28 Mar 2019 03:55:59 +0100 Subject: [PATCH] Add image and smallicon field for data (#9055) * Add image and smallicon field for data * Update joaoapps_join.markdown --- source/_components/joaoapps_join.markdown | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/source/_components/joaoapps_join.markdown b/source/_components/joaoapps_join.markdown index 487e31baca6..9355216b639 100644 --- a/source/_components/joaoapps_join.markdown +++ b/source/_components/joaoapps_join.markdown @@ -62,7 +62,7 @@ device_names: type: string {% endconfiguration %} -The notify service has two optional parameters: `icon` and `vibration`. +The notify service has two optional parameters: `icon`, `smallicon`, `image`, `sound`, `url`, `notification_id`, `tts`, `tts_language` and `vibration`. You can use them like so: ```json @@ -71,7 +71,14 @@ You can use them like so: "title": "Home Assistant", "data": { "icon": "https://goo.gl/xeetdy", - "vibration": "0,65,706,86,657,95,668,100" + "smallicon": "https://goo.gl/xeetdy", + "vibration": "0,65,706,86,657,95,668,100", + "image": "https://www.home-assistant.io/images/favicon-192x192-full.png", + "sound": "https://goo.gl/asasde.mp3", + "url": "https://home-assistant.io", + "notification_id": "hass-notification", + "tts": "Notification from Home Assistant", + "tts_language": "english" } } ```