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-comment/create-comment.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-comment",
6
6
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)",
8
8
type: "action",
9
9
version: "0.0.8",
10
10
props: {
@@ -33,7 +33,7 @@ export default {
33
33
content: {
34
34
type: "string",
35
35
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.",
37
37
},
38
38
},
39
39
asyncrun({ $ }){
@@ -54,7 +54,7 @@ export default {
54
54
},
55
55
});
56
56
57
-
$.export("$summary",`Successfully posted comment with ID${comment.id}`);
Copy file name to clipboardExpand all lines: components/basecamp/actions/create-message/create-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-message",
6
6
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)",
8
8
type: "action",
9
9
version: "0.0.8",
10
10
props: {
@@ -30,7 +30,7 @@ export default {
30
30
content: {
31
31
type: "string",
32
32
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.",
34
34
optional: true,
35
35
},
36
36
messageTypeId: {
@@ -71,7 +71,7 @@ export default {
71
71
},
72
72
});
73
73
74
-
$.export("$summary",`Successfully posted message with ID${message.id}`);
0 commit comments