1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-10 21:24:20 +01:00
fab-manager/app/assets/javascripts/services/wallet.coffee

19 lines
399 B
CoffeeScript
Raw Normal View History

2016-07-18 18:16:54 +02:00
'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
2016-07-05 13:20:25 +02:00
transactions:
method: 'GET'
url: '/api/wallet/:id/transactions'
isArray: true
2016-07-18 18:16:54 +02:00
]