You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/basecamp/actions/create-campfire-chatbot-message/create-campfire-chatbot-message.mjs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ import common from "../common/common.mjs";
4
4
exportdefault{
5
5
key: "basecamp-create-campfire-chatbot-message",
6
6
name: "Create Campfire Chatbot Message",
7
-
description: "Creates a line in the Campfire for a Basecamp Chatbot. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/chatbots.md#create-a-line)",
7
+
description: "Creates a line in a Campfire for a Basecamp Chatbot. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/chatbots.md#create-a-line)",
8
8
type: "action",
9
9
version: "0.0.4",
10
10
props: {
@@ -40,7 +40,7 @@ export default {
40
40
content: {
41
41
type: "string",
42
42
label: "Content",
43
-
description: "The plain text body for the Campfire line.",
43
+
description: "The plain text body for the Campfire message.",
Copy file name to clipboardExpand all lines: components/basecamp/actions/create-campfire-message/create-campfire-message.mjs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ import common from "../common/common.mjs";
4
4
exportdefault{
5
5
key: "basecamp-create-campfire-message",
6
6
name: "Create Campfire Message",
7
-
description: "Creates a line in the Campfire for the selected project. [See the docs here](https://github.com/basecamp/bc3-api/blob/master/sections/campfires.md#create-a-campfire-line)",
7
+
description: "Creates a line in a selected Campfire. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/campfires.md#create-a-campfire-line)",
8
8
type: "action",
9
9
version: "0.0.8",
10
10
props: {
@@ -25,7 +25,7 @@ export default {
25
25
content: {
26
26
type: "string",
27
27
label: "Content",
28
-
description: "The plain text body for the Campfire line.",
28
+
description: "The plain text body for the Campfire message.",
29
29
},
30
30
},
31
31
asyncrun({ $ }){
@@ -46,7 +46,7 @@ export default {
46
46
},
47
47
});
48
48
49
-
$.export("$summary",`Successfully posted campfire message with ID${message.id}`);
49
+
$.export("$summary",`Successfully created campfire message (ID:${message.id})`);
0 commit comments