2018-11-21 11:08:53 +01:00
|
|
|
'use strict';
|
2016-07-18 18:16:54 +02:00
|
|
|
|
2018-11-20 14:44:41 +01:00
|
|
|
Application.Controllers.controller('WalletController', ['$scope', 'walletPromise', 'transactionsPromise',
|
|
|
|
function ($scope, walletPromise, transactionsPromise) {
|
2018-10-25 16:50:16 +02:00
|
|
|
/* 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
|
|
|
]);
|