From 8dd8757d1ecefcf0abe9bc54063e4d2427f14fb7 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Tue, 14 Apr 2020 14:55:42 -0600 Subject: [PATCH] removed mapFn from pushbullet.endpoint example --- content/v2.0/reference/flux/stdlib/pushbullet/endpoint.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/content/v2.0/reference/flux/stdlib/pushbullet/endpoint.md b/content/v2.0/reference/flux/stdlib/pushbullet/endpoint.md index 8abae6244..4072df732 100644 --- a/content/v2.0/reference/flux/stdlib/pushbullet/endpoint.md +++ b/content/v2.0/reference/flux/stdlib/pushbullet/endpoint.md @@ -20,12 +20,7 @@ import "pushbullet" pushbullet.endpoint( url: "https://api.pushbullet.com/v2/pushes", - token: "", - mapFn: (r) => ({ - r with - title: "Notification Title", - text: "Value: ${string(v: r._value)}" - }) + token: "" ) ```