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

12 lines
211 B
JavaScript

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