mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-30 11:24:21 +01:00
14 lines
354 B
JavaScript
14 lines
354 B
JavaScript
'use strict';
|
|
|
|
Application.Controllers.controller('WalletController', ['$scope', 'walletPromise', 'transactionsPromise',
|
|
function ($scope, walletPromise, transactionsPromise) {
|
|
/* PUBLIC SCOPE */
|
|
|
|
// current user wallet
|
|
$scope.wallet = walletPromise;
|
|
|
|
// current wallet transactions
|
|
$scope.transactions = transactionsPromise;
|
|
}
|
|
]);
|