mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
13 lines
249 B
CoffeeScript
13 lines
249 B
CoffeeScript
'use strict'
|
|
|
|
Application.Services.factory 'Invoice', ["$resource", ($resource)->
|
|
$resource "/api/invoices/:id",
|
|
{id: "@id"},
|
|
update:
|
|
method: 'PUT'
|
|
list:
|
|
url: '/api/invoices/list'
|
|
method: 'POST'
|
|
isArray: true
|
|
]
|