Skip to content

Commit de4393b

Browse files
committed
Adjustments
1 parent cd877c2 commit de4393b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

components/basecamp/actions/create-campfire-chatbot-message/create-campfire-chatbot-message.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import common from "../common/common.mjs";
44
export default {
55
key: "basecamp-create-campfire-chatbot-message",
66
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)",
88
type: "action",
99
version: "0.0.4",
1010
props: {
@@ -40,7 +40,7 @@ export default {
4040
content: {
4141
type: "string",
4242
label: "Content",
43-
description: "The plain text body for the Campfire line.",
43+
description: "The plain text body for the Campfire message.",
4444
},
4545
},
4646
async run({ $ }) {
@@ -70,7 +70,7 @@ export default {
7070
},
7171
});
7272

73-
$.export("$summary", "Successfully posted campfire chatbot message.");
73+
$.export("$summary", "Successfully posted campfire chatbot message");
7474
return message;
7575
},
7676
};

components/basecamp/actions/create-campfire-message/create-campfire-message.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import common from "../common/common.mjs";
44
export default {
55
key: "basecamp-create-campfire-message",
66
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)",
88
type: "action",
99
version: "0.0.8",
1010
props: {
@@ -25,7 +25,7 @@ export default {
2525
content: {
2626
type: "string",
2727
label: "Content",
28-
description: "The plain text body for the Campfire line.",
28+
description: "The plain text body for the Campfire message.",
2929
},
3030
},
3131
async run({ $ }) {
@@ -46,7 +46,7 @@ export default {
4646
},
4747
});
4848

49-
$.export("$summary", `Successfully posted campfire message with ID ${message.id}`);
49+
$.export("$summary", `Successfully created campfire message (ID: ${message.id})`);
5050
return message;
5151
},
5252
};

0 commit comments

Comments
 (0)