We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e06e577 commit e879e4fCopy full SHA for e879e4f
src/dashboard/Data/Browser/Browser.react.js
@@ -271,9 +271,12 @@ class Browser extends DashboardView {
271
const params = {
272
objectId: objectId,
273
};
274
+ const options = {
275
+ useMasterKey: true,
276
+ }
277
const appName = this.props.params.appId;
278
const cloudCodeFunction = this.state.classwiseCloudFunctions[`${appId}${appName}`]?.[className][0].cloudCodeFunction;
- Parse.Cloud.run(cloudCodeFunction, params).then(
279
+ Parse.Cloud.run(cloudCodeFunction, params, options).then(
280
result => {
281
if (result && result.panel && result.panel && result.panel.segments) {
282
this.setState({ AggregationPanelData: result, isLoading: false });
0 commit comments