We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59c18b1 commit 06ef96fCopy full SHA for 06ef96f
src/lib/stores/JobsStore.js
@@ -30,7 +30,7 @@ function JobsStore(state, action) {
30
return Parse.Promise.as(state);
31
}
32
path = `cloud_code/jobs?per_page=50`;
33
- return Parse._request('GET', path).then((results) => {
+ return Parse._request('GET', path, {}, { useMasterKey: true}).then((results) => {
34
return Map({ lastFetch: new Date(), jobs: List(results) });
35
});
36
case ActionTypes.CREATE:
0 commit comments