1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-03 14:24:23 +01:00
fab-manager/app/assets/javascripts/services/slot.js

22 lines
454 B
JavaScript

/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/
'use strict';
Application.Services.factory('Slot', ["$resource", $resource=>
$resource("/api/slots/:id",
{id: "@id"}, {
update: {
method: 'PUT'
},
cancel: {
method: 'PUT',
url: '/api/slots/:id/cancel'
}
}
)
]);