mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
19 lines
411 B
CoffeeScript
19 lines
411 B
CoffeeScript
'use strict'
|
|
|
|
Application.Services.factory 'Wallet', ["$resource", ($resource)->
|
|
$resource "/api/wallet",
|
|
{},
|
|
getWalletByUser:
|
|
method: 'GET'
|
|
url: '/api/wallet/by_user/:user_id'
|
|
isArray: false
|
|
transactions:
|
|
method: 'GET'
|
|
url: '/api/wallet/:id/transactions'
|
|
isArray: true
|
|
credit:
|
|
method: 'PUT'
|
|
url: '/api/wallet/:id/credit'
|
|
isArray: false
|
|
]
|