21
No webhook for merge tasks
H
Harman Lamba
At this moment there is no event being fired when a task is merged into another task. This would be quite useful to track.
Possibly we could get a delete event being fired followed by an update on the target task.
Log In
C
Cassie Lueilwitz
Hello,
i have some write this you can read this
It sounds like you're looking for an event to be triggered when a task is merged into another task, as well as suggestions for events that could be fired in such cases. As an AI language model, I don't have specific knowledge of your software or application's implementation.
I can offer some general suggestions:
Custom Event Implementation: Consider implementing a custom event system within your application. This would involve adding event listeners and triggers at relevant points in your codebase. You can create custom events, such as "taskMerged" or "taskUpdated," and fire these events when the merging and updating of tasks occur. This way, you have full control over which events are triggered and when.
Delete Event: As you mentioned, triggering a "delete" event when a task is merged can be useful for tracking purposes. This event can indicate that a task has been merged into another task. You can provide relevant details in the event payload, such as the IDs or references to the merged tasks.
Update Event on Target Task: Following the delete event, triggering an "update" event on the target task would provide information about the changes made to the task after the merge. This event can include details about the merged tasks, such as their IDs, titles, or any other relevant information that was updated during the merge process.
i hope you can solve the issue.