parse-server icon indicating copy to clipboard operation
parse-server copied to clipboard

afterSave Webhook consumes event and afterSave trigger in cloud code does not run

Open apederse opened this issue 1 year ago • 1 comments

Issue Description

If afterSave on a class is handled both using cloud code AND afterSave webhook on the same class, then the webhook will consume the event and the afterSave trigger in the cloud code will not be triggered. Is this the expected behaviour or is it a bug?

In case there is a limitation that on the same class a trigger can only be implemented in cloud code OR webhook, then it would be very helpful if this would be explicitly mentioned in the documentation.

Steps to reproduce

Set up an afterSave cloud code "Parse.Cloud.afterSave(Parse.User....." Set up an afterSave webhook on the _User class Sign up a new user.

Actual Outcome

The webhook is triggered as expected but the afterSave cloud code is not triggered (If the webhook is removed or disabled then the cloud code afterSave is correctly triggered)

Expected Outcome

afterSave Webhook AND cloudcode afterSave trigger would both run when a new user signs up.

Environment

Server

  • Parse Server version: 5.2.3
  • Operating system: Linux
  • Local or remote host (AWS, Azure, Google Cloud, Heroku, Digital Ocean, etc): Local

Database

  • System (MongoDB or Postgres): MongoDB
  • Database version: 3.0
  • Local or remote host (MongoDB Atlas, mLab, AWS, Azure, Google Cloud, etc): Local

apederse avatar Nov 15 '24 11:11 apederse

Thanks for opening this issue!