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