mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-30 11:24:21 +01:00
21 lines
401 B
JavaScript
21 lines
401 B
JavaScript
'use strict';
|
|
|
|
Application.Services.factory('Invoice', ['$resource', function ($resource) {
|
|
return $resource('/api/invoices/:id',
|
|
{ id: '@id' }, {
|
|
update: {
|
|
method: 'PUT'
|
|
},
|
|
list: {
|
|
url: '/api/invoices/list',
|
|
method: 'POST',
|
|
isArray: true
|
|
},
|
|
first: {
|
|
url: '/api/invoices/first',
|
|
method: 'GET'
|
|
}
|
|
}
|
|
);
|
|
}]);
|