mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-03 14:24:23 +01:00
15 lines
299 B
CoffeeScript
15 lines
299 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
|
|
]
|