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 = { var APNSSettingSchema = {
pushOptions: {type: { pushOptions: {type: {
gateway: String, gateway: {type: String, default: 'gateway.sandbox.push.apple.com'},
cert: String, cert: String,
key: String key: String
}}, }},
feedbackOptions: {type: { feedbackOptions: {type: {
gateway: String, gateway: {type: String, default: 'feedback.sandbox.push.apple.com'},
cert: String, cert: String,
key: String, key: String,
batchFeedback: Boolean, batchFeedback: Boolean,