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

24 lines
506 B
JavaScript
Raw Normal View History

2018-11-21 11:08:53 +01:00
'use strict';
2016-07-18 18:16:54 +02:00
2018-11-27 15:16:23 +01:00
Application.Services.factory('Wallet', ['$resource', function ($resource) {
return $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
}
}
2018-11-27 15:16:23 +01:00
);
}]);