Set push.storedPushData in serverInfo features if push is available (#1923)

It's assumed that when push is available, the pushHandler is used and data is saved in _PushStatus.
This allows Parse Dashboard push history to be enabled: ParsePlatform/parse-dashboard#378
This commit is contained in:
Jeremy Pease
2016-05-26 17:02:13 -04:00
committed by Drew
parent 2561987d20
commit dd1d18dbe6

View File

@@ -28,7 +28,7 @@ export class FeaturesRouter extends PromiseRouter {
push: {
immediatePush: req.config.pushController.pushIsAvailable,
scheduledPush: false,
storedPushData: false,
storedPushData: req.config.pushController.pushIsAvailable,
pushAudiences: false,
},
schemas: {