Open
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
Parse Dashboard uses the JS SDK with the masterKey
. It would be helpful to have context in cloud code whether the masterKey
is being used in the dashboard, or via the cloud code.
Feature / Enhancement Description
obj.save(null, { context: {dashboard: true }})
Parse.Cloud.beforeFind('Object', ({ context, master}) => {
if (context.dashboard && master) {
// custom logic for dashboard only
}
});