mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +01:00
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
'use strict';
|
|
|
|
Application.Services.factory('AccountingExport', ['$resource', function ($resource) {
|
|
return $resource('/api/accounting',
|
|
{}, {
|
|
export: {
|
|
method: 'POST',
|
|
url: '/api/accounting/export'
|
|
}
|
|
}
|
|
);
|
|
}]);
|