mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
13 lines
253 B
JavaScript
13 lines
253 B
JavaScript
'use strict';
|
|
|
|
Application.Services.factory('OpenlabProject', ['$resource', function ($resource) {
|
|
return $resource('/api/openlab_projects/:id',
|
|
{ id: '@id' }, {
|
|
query: {
|
|
method: 'GET',
|
|
isArray: false
|
|
}
|
|
}
|
|
);
|
|
}]);
|