mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +01:00
12 lines
265 B
CoffeeScript
12 lines
265 B
CoffeeScript
'use strict'
|
|
|
|
Application.Services.factory 'Member', ["$resource", ($resource)->
|
|
$resource "/api/members/:id",
|
|
{id: "@id"},
|
|
lastSubscribed:
|
|
method: 'GET'
|
|
url: '/api/last_subscribed/:limit'
|
|
params: {limit: "@limit"}
|
|
isArray: true
|
|
]
|