Add default values

This commit is contained in:
Raymond Feng 2013-11-28 08:08:46 -08:00
parent 2ec45b0fb3
commit 3e193a8aa3
1 changed files with 2 additions and 2 deletions

View File

@ -9,13 +9,13 @@ var AuthenticationSchemeSchema = {
var APNSSettingSchema = {
pushOptions: {type: {
gateway: String,
gateway: {type: String, default: 'gateway.sandbox.push.apple.com'},
cert: String,
key: String
}},
feedbackOptions: {type: {
gateway: String,
gateway: {type: String, default: 'feedback.sandbox.push.apple.com'},
cert: String,
key: String,
batchFeedback: Boolean,