Wallet/src/js/services/pushNotificationsService.js

12 lines
275 B
JavaScript
Raw Normal View History

2015-12-23 12:29:46 -03:00
'use strict';
angular.module('copayApp.services')
.factory('pushNotificationsService', function($http) {
var root = {};
root.subscribe = function(opts) {
return $http.post('http://192.168.1.120:8000/subscribe', opts);
}
return root;
});