mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
13 lines
329 B
CoffeeScript
13 lines
329 B
CoffeeScript
'use strict'
|
|
|
|
Application.Controllers.controller "WalletController", ['$scope', 'walletPromise', 'transactionsPromise', ($scope, walletPromise, transactionsPromise)->
|
|
|
|
### PUBLIC SCOPE ###
|
|
|
|
## current user wallet
|
|
$scope.wallet = walletPromise
|
|
|
|
## current wallet transactions
|
|
$scope.transactions = transactionsPromise
|
|
]
|