myems-admin/app/services/settings/store/storepoint.service.js
'use strict';
app.factory('StorePointService', function($http) {
return {
addPair: function(storeID,pointID, headers, callback) {
$http.post(getAPI()+'stores/'+storeID+'/points',{data:{'point_id':pointID}}, {headers})
.then(function (response) {
callback(response);
}, function (response) {
callback(response);
});
},
deletePair: function(storeID,pointID, headers, callback) {
$http.delete(getAPI()+'stores/'+storeID+'/points/'+pointID, {headers})
.then(function (response) {
callback(response);
}, function (response) {
callback(response);
});
},
getPointsByStoreID: function(id, headers, callback) {
$http.get(getAPI()+'stores/'+id+'/points', {headers})
.then(function (response) {
callback(response);
}, function (response) {
callback(response);
});
}
};
});