From 41b223c08b84e7f308c4a30b3fcefdcab2706d13 Mon Sep 17 00:00:00 2001 From: ildar170975 <71872483+ildar170975@users.noreply.github.com> Date: Mon, 8 Aug 2022 18:01:05 +0300 Subject: [PATCH] Add telegram disable_web_page_preview (telegram.markdown) (#23572) --- source/_integrations/telegram.markdown | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/source/_integrations/telegram.markdown b/source/_integrations/telegram.markdown index d753f4deea8..5663552211b 100644 --- a/source/_integrations/telegram.markdown +++ b/source/_integrations/telegram.markdown @@ -387,10 +387,14 @@ action: service: notify.NOTIFIER_NAME data: title: "*Send a message*" - message: "That's an example that sends a message with message_tag and disable_notification." + message: |- + That's an example that sends a message with message_tag, disable_notification and disable_web_page_preview. + HA site data: + parse_mode: html message_tag: "example_tag" disable_notification: True + disable_web_page_preview: True ``` {% configuration %} @@ -403,6 +407,10 @@ disable_notification: required: false default: false type: boolean +disable_web_page_preview: + description: True/false to display a webpage preview. + default: false + type: boolean message_tag: description: Tag for sent message. required: false