From 6b6623bf4a1108f560786c0d16d21174f1ab494c Mon Sep 17 00:00:00 2001 From: Klaas Schoute Date: Sat, 17 Nov 2018 11:27:52 +0100 Subject: [PATCH] Update pushbullet notify component configuration (#7546) --- source/_components/notify.pushbullet.markdown | 20 ++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/source/_components/notify.pushbullet.markdown b/source/_components/notify.pushbullet.markdown index 0cac4e4d554..ad52044e55b 100644 --- a/source/_components/notify.pushbullet.markdown +++ b/source/_components/notify.pushbullet.markdown @@ -24,10 +24,17 @@ notify: api_key: YOUR_API_KEY ``` -Configuration variables: - -- **api_key** (*Required*): Enter the API key for Pushbullet. Go to [https://www.pushbullet.com/#settings/account](https://www.pushbullet.com/#settings/account) to retrieve your API key/access token. -- **name** (*Optional*): Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`. +{% configuration %} +api_key: + description: Enter the API key for Pushbullet. Go to [https://www.pushbullet.com/#settings/account](https://www.pushbullet.com/#settings/account) to retrieve your API key/access token. + required: true + type: string +name: + description: Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`. + required: false + default: notify + type: string +{% endconfiguration %} ### {% linkable_title Usage %} @@ -84,7 +91,6 @@ action: - **file** (*Required*): File to send with Pushbullet. - ### {% linkable_title File URL support %} ```yaml @@ -100,6 +106,7 @@ action: - **file_url** (*Required*): File to send with Pushbullet. ### {% linkable_title Single target %} + ```yaml action: service: notify.NOTIFIER_NAME @@ -108,10 +115,9 @@ action: message: "This only goes to one specific device" target: device/DEVICE_NAME ``` -- **target**: Pushbullet device to recive the notification. +- **target**: Pushbullet device to recive the notification.

Don't forget to [whitelist external directories](/docs/configuration/basic/), so Home Assistant has access to them.

-