Skip to content

Commit fd3f7a5

Browse files
committed
Improvements
1 parent 8c192a1 commit fd3f7a5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

components/basecamp/actions/create-comment/create-comment.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-comment",
66
name: "Create a Comment",
7-
description: "Publishes a comment to the select recording. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/comments.md#create-a-comment)",
7+
description: "Creates a comment in a selected recording. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/comments.md#create-a-comment)",
88
type: "action",
99
version: "0.0.8",
1010
props: {
@@ -33,7 +33,7 @@ export default {
3333
content: {
3434
type: "string",
3535
label: "Content",
36-
description: "The body of the comment. See [Rich text guide](https://github.com/basecamp/bc3-api/blob/master/sections/rich_text.md) for what HTML tags are allowed.",
36+
description: "The body of the comment. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/comments.md#create-a-comment) for information on using HTML tags.",
3737
},
3838
},
3939
async run({ $ }) {
@@ -54,7 +54,7 @@ export default {
5454
},
5555
});
5656

57-
$.export("$summary", `Successfully posted comment with ID ${comment.id}`);
57+
$.export("$summary", `Successfully posted comment (ID: ${comment.id})`);
5858
return comment;
5959
},
6060
};

components/basecamp/actions/create-message/create-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-message",
66
name: "Create Message",
7-
description: "Publishes a message in the project and message board selected. [See the docs here](https://github.com/basecamp/bc3-api/blob/master/sections/messages.md#create-a-message)",
7+
description: "Creates a message in a selected message board. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/messages.md#create-a-message)",
88
type: "action",
99
version: "0.0.8",
1010
props: {
@@ -30,7 +30,7 @@ export default {
3030
content: {
3131
type: "string",
3232
label: "Content",
33-
description: "The body of the message. See [Rich text guide](https://github.com/basecamp/bc3-api/blob/master/sections/rich_text.md) for what HTML tags are allowed.",
33+
description: "The body of the message. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/messages.md#create-a-message) for information on using HTML tags.",
3434
optional: true,
3535
},
3636
messageTypeId: {
@@ -71,7 +71,7 @@ export default {
7171
},
7272
});
7373

74-
$.export("$summary", `Successfully posted message with ID ${message.id}`);
74+
$.export("$summary", `Successfully posted message (ID: ${message.id})`);
7575
return message;
7676
},
7777
};

0 commit comments

Comments
 (0)