Commit new state
This commit is contained in:
8
js/service/LabelService.js
Normal file
8
js/service/LabelService.js
Normal file
@@ -0,0 +1,8 @@
|
||||
app.factory('LabelService', function(ApiService, $http, $q){
|
||||
var LabelService = function($http, ep, $q) {
|
||||
ApiService.call(this, $http, ep, $q);
|
||||
};
|
||||
LabelService.prototype = angular.copy(ApiService.prototype);
|
||||
service = new LabelService($http, 'labels', $q)
|
||||
return service;
|
||||
});
|
||||
Reference in New Issue
Block a user