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:
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user