mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
'use strict';
|
|
|
|
Application.Services.factory('Abuse', ['$resource', function ($resource) {
|
|
return $resource('/api/abuses/:id',
|
|
{ id: '@id' }, {
|
|
update: {
|
|
method: 'PUT'
|
|
}
|
|
}
|
|
);
|
|
}]);
|