1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-03-01 23:29:23 +01:00
2016-07-21 16:32:54 +02:00

19 lines
399 B
CoffeeScript

'use strict'
Application.Services.factory 'Wallet', ["$resource", ($resource)->
$resource "/api/wallet",
{},
my:
method: 'GET'
url: '/api/wallet/my'
isArray: false
getWalletByUser:
method: 'GET'
url: '/api/wallet/by_user/:user_id'
isArray: false
transactions:
method: 'GET'
url: '/api/wallet/:id/transactions'
isArray: true
]