1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/assets/javascripts/services/price_category.js
2018-11-27 15:16:23 +01:00

12 lines
229 B
JavaScript

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