mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-05 20:46:14 +01:00
7 lines
129 B
CoffeeScript
7 lines
129 B
CoffeeScript
|
'use strict'
|
||
|
|
||
|
Application.Services.factory 'Group', ["$resource", ($resource)->
|
||
|
$resource "/api/groups/:id",
|
||
|
{id: "@id"}
|
||
|
]
|