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 dde78a3 commit 31a4639Copy full SHA for 31a4639
src/lib/ServerConfigStorage.js
@@ -59,6 +59,9 @@ export default class ServerConfigStorage {
59
this._clearAllValueFields(configObject);
60
configObject.set(valueType, value);
61
62
+ // Set empty ACL so object is only accessible with master key
63
+ configObject.setACL(new Parse.ACL());
64
+
65
// Use master key for operations
66
return configObject.save(null, { useMasterKey: true });
67
}
0 commit comments