1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-30 11:24:21 +01:00
fab-manager/app/assets/javascripts/controllers/wallet.js

14 lines
354 B
JavaScript
Raw Normal View History

2018-11-21 11:08:53 +01:00
'use strict';
2016-07-18 18:16:54 +02:00
Application.Controllers.controller('WalletController', ['$scope', 'walletPromise', 'transactionsPromise',
function ($scope, walletPromise, transactionsPromise) {
/* PUBLIC SCOPE */
2016-07-18 18:16:54 +02:00
2018-11-21 10:59:07 +01:00
// current user wallet
2018-11-21 11:08:53 +01:00
$scope.wallet = walletPromise;
2016-07-05 13:20:25 +02:00
2018-11-21 10:59:07 +01:00
// current wallet transactions
2019-06-13 11:28:55 +02:00
$scope.transactions = transactionsPromise;
2018-11-21 10:59:07 +01:00
}
2018-11-21 11:08:53 +01:00
]);