adding copayersid and walletid to user subscribe json

This commit is contained in:
Gabriel Bazán 2015-12-28 12:32:01 -03:00
commit 012fb8021b
4 changed files with 9 additions and 5 deletions

View file

@ -4,11 +4,11 @@
var root = {};
root.subscribe = function(opts) {
return $http.post('http://192.168.1.120:8000/subscribe', opts);
return $http.post('http://192.168.1.126:8000/subscribe', opts);
}
root.unsubscribe = function(token) {
return $http.post('http://192.168.1.120:8000/unsubscribe', {
return $http.post('http://192.168.1.126:8000/unsubscribe', {
token: token
});
}