(props, { thread })
| 24 | "single issue, or right after creating one (set justCreated: true).", |
| 25 | parameters: issueCardSchema, |
| 26 | async handler(props, { thread }) { |
| 27 | await thread.post(<IssueCard {...props} />); |
| 28 | return "Displayed the issue card to the user."; |
| 29 | }, |
| 30 | }); |
| 31 | |
| 32 | export const issueListTool = defineChannelTool({ |
nothing calls this directly
no outgoing calls
no test coverage detected