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/openlab_project.js

19 lines
419 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('OpenlabProject', ["$resource", $resource=>
$resource("/api/openlab_projects/:id",
{id: "@id"}, {
query: {
method: 'GET',
isArray: false
}
}
)
]);