mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-30 11:24:21 +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
|
||
|
]
|