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
* prepped for 1.4.0 release
* new additions to changelog
* adds verification emails & ParseConfig to README
* update README & test version to 1.4.0
* pull version from current sdk version
* Update parse-server-test to 1.3.6, pinning mongodb to v3.4
* Use mongodb 3.4 on prestart
**ParseConfig** allows you to access the global **Config** object for your parse server setup.
448
+
You can get, set and update simple values much like you would on an instance of **ParseObject**. Through this all your SDKs and applications can have access to global settings, options, and more.
449
+
What you choose to put in your config is purely up to you however.
450
+
```php
451
+
$config = new ParseConfig();
452
+
453
+
// check a config value of yours
454
+
$allowed = $config->get('feature_allowed');
455
+
456
+
// add a simple config value
457
+
$config->set('feature_allowed', true);
458
+
459
+
// save this global config
460
+
$config->save();
461
+
```
462
+
463
+
435
464
### Analytics
436
465
437
466
A specialized Parse Object built purposely to make analytics easy.
0 commit comments