From 2c6f85e618558ce975944d8355b415e91a535e17 Mon Sep 17 00:00:00 2001 From: Tommy Jonsson Date: Thu, 27 Sep 2018 14:28:35 +0200 Subject: [PATCH] Add image support for hangouts notification (#6254) * Add image to hangouts notification Add data attribute with image component. Can be a path or url. * change to image_file / image_url --- source/_components/hangouts.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/hangouts.markdown b/source/_components/hangouts.markdown index 8bc8948b600..c83933ffaf1 100644 --- a/source/_components/hangouts.markdown +++ b/source/_components/hangouts.markdown @@ -165,5 +165,5 @@ Sends a message to the given conversations. |------------------------|----------|--------------------------------------------------| | target | List of targets with id or name. [Required] | [{"id": "UgxrXzVrARmjx_C6AZx4AaABAagBo-6UCw"}, {"name": "Test Conversation"}] | | message | List of message segments, only the "text" field is required in every segment. [Required] | [{"text":"test", "is_bold": false, "is_italic": false, "is_strikethrough": false, "is_underline": false, "parse_str": false, "link_target": "http://google.com"}, ...] | - +| data | Extra options | {"image_file": "path"} / {"image_url": "url"} |