No delete event send on work item deleted
I can receive post request on woke item created, bu no delete request on item deleted
๐ CodeRabbit Plan Mode
Generate an implementation plan and prompts that you can use with your favorite coding agent.
- [ ] Create Plan
๐งช Issue enrichment is currently in open beta.
You can configure auto-planning by selecting labels in the issue_enrichment configuration.
To disable automatic issue enrichment, add the following to your .coderabbit.yaml:
issue_enrichment:
auto_enrich:
enabled: false
๐ฌ Have feedback or questions? Drop into our discord or schedule a call!
plane webhook callback request is POST only.
@LinEvil The official doc says "he webhooks are triggered for POST, PATCH, and DELETE requests."
how can I receive delete event?
@LinEvil The official doc says "he webhooks are triggered for POST, PATCH, and DELETE requests."
how can I receive delete event?
https://developers.plane.so/dev-tools/intro-webhooks#how-webhook-works
It will respond to the Plane Webhook push (HTTP POST request) with a HTTP 200 (โOKโ) response.
https://developers.plane.so/dev-tools/build-plane-app#issue-events
When an issue is created, updated, or deleted
@LinEvil What I mean, there is no deleted event send to my server. When an issue is created, updated, I receive an event; When an issue is deleted, I receive nothing.
@LinEvil What I mean, there is no deleted event send to my server. When an issue is created, updated, I receive an event; When an issue is deleted, I receive nothing.
It does exist. Check your code.
how can I receive delete event?