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

15 lines
299 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
]