Skip to content

Commit 7e0132b

Browse files
committed
fix props
1 parent 22c1f70 commit 7e0132b

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

components/zendesk/sources/new-ticket-comment-added/new-ticket-comment-added.mjs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import app from "../../zendesk.app.mjs";
12
import common from "../common/ticket.mjs";
23

34
export default {
@@ -8,6 +9,23 @@ export default {
89
description: "Emit new event when a ticket comment has been added",
910
version: "0.0.1",
1011
dedupe: "unique",
12+
props: {
13+
app,
14+
db: "$.service.db",
15+
http: "$.interface.http",
16+
categoryId: {
17+
propDefinition: [
18+
app,
19+
"categoryId",
20+
],
21+
},
22+
customSubdomain: {
23+
propDefinition: [
24+
app,
25+
"customSubdomain",
26+
],
27+
},
28+
},
1129
methods: {
1230
...common.methods,
1331
_getLastTs() {

0 commit comments

Comments
 (0)