adding copayersid and walletid to user subscribe json
This commit is contained in:
parent
ca65303941
commit
012fb8021b
4 changed files with 9 additions and 5 deletions
|
|
@ -28,9 +28,10 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
|||
}
|
||||
|
||||
push.on('registration', function(data) {
|
||||
var fc = profileService.focusedClient;
|
||||
var opts = {};
|
||||
var deviceType = (navigator.userAgent.match(/iPhone/i)) == "iPhone" ? "ios" : (navigator.userAgent.match(/Android/i)) == "Android" ? "android" : null;
|
||||
opts.user = "copayUser";
|
||||
opts.user = fc.credentials.copayerId + "||" + fc.credentials.walletId;
|
||||
opts.type = deviceType;
|
||||
opts.token = data.registrationId;
|
||||
storageService.setNotificationsOptions(JSON.stringify(opts), function() {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('preferencesGlobalController',
|
||||
function($scope, $rootScope, $log, configService, uxLanguage) {
|
||||
function($scope, $rootScope, $log, configService, uxLanguage, isCordova) {
|
||||
|
||||
this.init = function() {
|
||||
var config = configService.getSync();
|
||||
|
|
@ -17,6 +17,9 @@ angular.module('copayApp.controllers').controller('preferencesGlobalController',
|
|||
$scope.notifications = config.notifications ? config.notifications.enabled : true;
|
||||
};
|
||||
|
||||
if (isCordova) $scope.mobile = true;
|
||||
else $scope.mobile = false;
|
||||
|
||||
var unwatchSpendUnconfirmed = $scope.$watch('spendUnconfirmed', function(newVal, oldVal) {
|
||||
if (newVal == oldVal) return;
|
||||
var opts = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue