-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Open
Labels
bounty:$20Bounty applies for fixing this issue (Parse Bounty Program)Bounty applies for fixing this issue (Parse Bounty Program)type:featureNew feature or improvement of existing featureNew feature or improvement of existing feature
Description
New Feature / Enhancement Checklist
- I am not disclosing a vulnerability.
- I am not just asking a question.
- I have searched through existing issues.
Current Limitation
Currently user have to define cloud triggers one by one. If we have a recurring logic inside of cloud trigger, defining triggers become too hard.
Feature / Enhancement Description
We should be able to define one trigger that applies to all class. Unless that class has its own triggers.
Example Use Case
Parse.Cloud.beforeSave("Test", (request) => {
//this trigger will be executed for only Test class
});
Parse.Cloud.beforeSave("*", (request) => {
//this trigger will be executed for every class except Test class
});
Alternatives / Workarounds
No known workaround or alternative.
3rd Party References
Its similar to setting SSL sertificates to multiple subdomains.
Metadata
Metadata
Assignees
Labels
bounty:$20Bounty applies for fixing this issue (Parse Bounty Program)Bounty applies for fixing this issue (Parse Bounty Program)type:featureNew feature or improvement of existing featureNew feature or improvement of existing feature