Subscribe push notifications after create a wallet

This commit is contained in:
Gustavo Maximiliano Cortez 2017-05-17 16:25:36 -03:00
commit b5d0a7ff08
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
2 changed files with 10 additions and 1 deletions

View file

@ -1,7 +1,7 @@
'use strict';
angular.module('copayApp.controllers').controller('createController',
function($scope, $rootScope, $timeout, $log, lodash, $state, $ionicScrollDelegate, $ionicHistory, profileService, configService, gettextCatalog, ledger, trezor, intelTEE, derivationPathHelper, ongoingProcess, walletService, storageService, popupService, appConfigService) {
function($scope, $rootScope, $timeout, $log, lodash, $state, $ionicScrollDelegate, $ionicHistory, profileService, configService, gettextCatalog, ledger, trezor, intelTEE, derivationPathHelper, ongoingProcess, walletService, storageService, popupService, appConfigService, pushNotificationsService) {
/* For compressed keys, m*73 + n*34 <= 496 */
var COPAYER_PAIR_LIMITS = {
@ -214,6 +214,7 @@ angular.module('copayApp.controllers').controller('createController',
}
walletService.updateRemotePreferences(client);
pushNotificationsService.updateSubscription(client);
if ($scope.seedSource.id == 'set') {
profileService.setBackupFlag(client.credentials.walletId);

View file

@ -23,6 +23,14 @@ angular.module('copayApp.services').factory('pushNotificationsService', function
});
};
root.updateSubscription = function(walletClient) {
if (!_token) {
$log.warn('Push notifications disabled for this device. Nothing to do here.');
return;
}
_subscribe(walletClient);
};
root.enable = function() {
if (!_token) {
$log.warn('No token available for this device. Cannot set push notifications. Needs registration.');