Update Facebook notify component configuration (#6939)

* Update Facebook notify component configuration

* ✏️ Remove a whitespace
This commit is contained in:
Klaas Schoute 2018-10-19 20:00:11 +02:00 committed by Fabian Affolter
parent d7377b8634
commit 6aabc13bf2

View File

@ -24,10 +24,17 @@ notify:
page_access_token: FACEBOOK_PAGE_ACCESS_TOKEN
```
Configuration variables:
- **page_access_token** (*Required*): Access token for your Facebook page. Checkout [Facebook Messenger Platform](https://developers.facebook.com/docs/messenger-platform/guides/setup) for more information.
- **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 %}
page_access_token:
description: "Access token for your Facebook page. Checkout [Facebook Messenger Platform](https://developers.facebook.com/docs/messenger-platform/guides/setup) for more information."
required: true
type: string
name:
description: Setting the optional parameter `name` allows multiple notifiers to be created. The notifier will bind to the service `notify.NOTIFIER_NAME`.
required: false
default: "`notify`"
type: string
{% endconfiguration %}
### {% linkable_title Usage %}
@ -134,4 +141,3 @@ To enable broadcast just use the keyword "BROADCAST" as your target. Only put ON
target:
- BROADCAST
```