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