2018-10-25 16:51:20 +02:00
|
|
|
/* eslint-disable
|
|
|
|
no-return-assign,
|
|
|
|
no-undef,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2018-10-25 16:50:16 +02:00
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
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
|
2018-11-21 11:08:53 +01:00
|
|
|
return $scope.transactions = transactionsPromise;
|
2018-11-21 10:59:07 +01:00
|
|
|
}
|
2018-11-21 11:08:53 +01:00
|
|
|
]);
|