From ba1104f6edfb4f391802378172603e09b96840da Mon Sep 17 00:00:00 2001 From: Peter Theill Date: Sun, 7 Feb 2016 00:14:23 +0100 Subject: [PATCH] Open _GlobalConfig for querying --- Schema.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Schema.js b/Schema.js index 25e301cd..2fe7a2de 100644 --- a/Schema.js +++ b/Schema.js @@ -75,6 +75,7 @@ function classNameIsValid(className) { className === '_Session' || className === '_SCHEMA' || //TODO: remove this, as _SCHEMA is not a valid class name for storing Parse Objects. className === '_Role' || + className === '_GlobalConfig' || joinClassRegex.test(className) || //Class names have the same constraints as field names, but also allow the previous additional names. fieldNameIsValid(className)