1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-23 12:52:20 +01:00

12 lines
213 B
JavaScript

'use strict';
Application.Services.factory('Credit', ['$resource', function ($resource) {
return $resource('/api/credits/:id',
{ id: '@id' }, {
update: {
method: 'PUT'
}
}
);
}]);