1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-03-01 23:29:23 +01:00
fab-manager/app/assets/javascripts/services/accounting_export.js

13 lines
251 B
JavaScript
Raw Normal View History

2019-07-31 12:00:52 +02:00
'use strict';
Application.Services.factory('AccountingExport', ['$resource', function ($resource) {
return $resource('/api/accounting',
{}, {
export: {
method: 'POST',
url: '/api/accounting/export'
}
}
);
}]);