move push notifications config to configService

This commit is contained in:
Javier 2016-01-13 10:12:10 -03:00 committed by Gabriel Bazán
commit 50ffb0af23
3 changed files with 25 additions and 23 deletions

View file

@ -42,8 +42,20 @@ angular.module('copayApp.services').factory('configService', function(storageSer
url: 'https://insight.bitpay.com:443/api/rates',
},
notifications: {
enabled: true
pushNotifications: {
enabled: true,
url: 'http://192.168.1.111:8080',
config: {
android: {
senderID: '959259672122',
},
ios: {
alert: 'true',
badge: 'true',
sound: 'true',
},
windows: {},
}
},
};