You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The _GLOBALCONFIG table is used to save Config values when using Parse Dashboard. As I use the values stored in this table only in Cloud Code I would prevent access from users (like remove all CLP permissions). Currently its world readable:
let query = new Parse.Query('_GlobalConfig');
query.limit(4);
return query.find({})
.then(msg => {
return msg;
})
This is the intended behaviour, as Parse Config is designed to be used by the clients. If you want to submit a PR that allows you to have private config, we would gladly accept it!
Issue Description
The _GLOBALCONFIG table is used to save
Config
values when using Parse Dashboard. As I use the values stored in this table only in Cloud Code I would prevent access from users (like remove all CLP permissions). Currently its world readable:Result:
This issue also might affect the
_PushStatus
and__JOBS__
tables.Environment Setup
The text was updated successfully, but these errors were encountered: